1 INSERT INTO layout_options VALUES ('DEM','fitness' ,'5Stats' ,'Fitness to Play',10, 1,1, 0, 0,'fitness',1,1,'','','Fitness Level');
2 INSERT INTO layout_options VALUES ('DEM','userdate1','5Stats' ,'Return to Play' ,11, 4,1,10,10,'' ,1,1,'','','Return to Play Date');
4 INSERT INTO layout_options VALUES ('HIS','' ,'1General','Allergies' , 3,24,1, 0, 0,'' ,1,1,'','' ,'List of allergies');
6 INSERT INTO list_options ( list_id, option_id, title, seq, is_default, option_value ) VALUES ('fitness','1','Full Play' , 1,1,0);
7 INSERT INTO list_options ( list_id, option_id, title, seq, is_default, option_value ) VALUES ('fitness','2','Full Training' , 2,0,0);
8 INSERT INTO list_options ( list_id, option_id, title, seq, is_default, option_value ) VALUES ('fitness','3','Restricted Training', 3,0,0);
9 INSERT INTO list_options ( list_id, option_id, title, seq, is_default, option_value ) VALUES ('fitness','4','Injured Out' , 4,0,0);
10 INSERT INTO list_options ( list_id, option_id, title, seq, is_default, option_value ) VALUES ('fitness','5','Rehabilitation' , 5,0,0);
11 INSERT INTO list_options ( list_id, option_id, title, seq, is_default, option_value ) VALUES ('fitness','6','Illness' , 6,0,0);
12 INSERT INTO list_options ( list_id, option_id, title, seq, is_default, option_value ) VALUES ('fitness','7','International Duty' , 7,0,0);
14 INSERT INTO list_options ( list_id, option_id, title, seq, is_default, option_value ) VALUES ('lists','fitness','Sports Fitness Levels',51,0,0);
16 ALTER TABLE patient_data
17 ADD `userdate1` date DEFAULT NULL;
19 CREATE TABLE IF NOT EXISTS lists_football_injury (
20 id bigint(20) NOT NULL,
21 fiinjmin int(11) NOT NULL DEFAULT 0,
22 fiinjtime int(11) NOT NULL DEFAULT 0,
23 fimatchtype int(11) NOT NULL DEFAULT 0,
24 fimech_tackling tinyint(1) NOT NULL DEFAULT 0,
25 fimech_tackled tinyint(1) NOT NULL DEFAULT 0,
26 fimech_collision tinyint(1) NOT NULL DEFAULT 0,
27 fimech_kicked tinyint(1) NOT NULL DEFAULT 0,
28 fimech_elbow tinyint(1) NOT NULL DEFAULT 0,
29 fimech_othercon varchar(255) NOT NULL DEFAULT '',
30 fimech_nofoul tinyint(1) NOT NULL DEFAULT 0,
31 fimech_oppfoul tinyint(1) NOT NULL DEFAULT 0,
32 fimech_ownfoul tinyint(1) NOT NULL DEFAULT 0,
33 fimech_yellow tinyint(1) NOT NULL DEFAULT 0,
34 fimech_red tinyint(1) NOT NULL DEFAULT 0,
35 fimech_passing tinyint(1) NOT NULL DEFAULT 0,
36 fimech_shooting tinyint(1) NOT NULL DEFAULT 0,
37 fimech_running tinyint(1) NOT NULL DEFAULT 0,
38 fimech_dribbling tinyint(1) NOT NULL DEFAULT 0,
39 fimech_heading tinyint(1) NOT NULL DEFAULT 0,
40 fimech_jumping tinyint(1) NOT NULL DEFAULT 0,
41 fimech_landing tinyint(1) NOT NULL DEFAULT 0,
42 fimech_fall tinyint(1) NOT NULL DEFAULT 0,
43 fimech_stretching tinyint(1) NOT NULL DEFAULT 0,
44 fimech_turning tinyint(1) NOT NULL DEFAULT 0,
45 fimech_throwing tinyint(1) NOT NULL DEFAULT 0,
46 fimech_diving tinyint(1) NOT NULL DEFAULT 0,
47 fimech_overuse tinyint(1) NOT NULL DEFAULT 0,
48 fimech_othernon varchar(255) NOT NULL DEFAULT '',
49 fisurface int(11) NOT NULL DEFAULT 0,
50 fiposition int(11) NOT NULL DEFAULT 0,
51 fifootwear int(11) NOT NULL DEFAULT 0,
52 fiside int(11) NOT NULL DEFAULT 0,
53 firemoved int(11) NOT NULL DEFAULT 0,