Merge pull request #7535 from stephenwaite/bug_fix_w1
[openemr.git] / contrib / forms / leg_length / table.sql
blob77970da4c511d66be69d766546149bdd306900f0
1 CREATE TABLE IF NOT EXISTS `form_leg_length` (
2   `id`                  bigint(20)   NOT NULL auto_increment,
3   `date`                datetime     DEFAULT NULL,
4   `pid`                 bigint(20)   NOT NULL DEFAULT 0,
5   `user`                varchar(255) DEFAULT NULL,
6   `groupname`           varchar(255) DEFAULT NULL,
7   `authorized`          tinyint(4)   NOT NULL DEFAULT 0,
8   `activity`            tinyint(4)   NOT NULL DEFAULT 0,
9   `AE_left`           text,
10   `AE_right`           text,
11   `BE_left`           text,
12   `BE_right`           text,
13   `AK_left`           text,
14   `AK_right`           text,
15   `K_left`           text,  
16   `K_right`           text,  
17   `BK_left`           text,  
18   `BK_right`           text,  
19   `ASIS_left`           text,  
20   `ASIS_right`           text,  
21   `UMB_left`           text,  
22   `UMB_right`           text, 
23   `notes`           text, 
24   PRIMARY KEY (id)
25 ) ENGINE=InnoDB;