Added qgit package installation to developer appliance and cvs demo scripts.
[openemr.git] / contrib / forms / hand / table.sql
blobcdbd0e9803c81237ba72201365f806602c598638
1 CREATE TABLE IF NOT EXISTS `form_hand` (
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   `left_1`           text NOT NULL DEFAULT '',
10   `left_2`           text NOT NULL DEFAULT '',
11   `left_3`           text NOT NULL DEFAULT '',
12   `right_1`           text NOT NULL DEFAULT '',
13   `right_2`           text NOT NULL DEFAULT '',
14   `right_3`           text NOT NULL DEFAULT '',
15   `handedness`           text NOT NULL DEFAULT '',
16   `notes`           text NOT NULL DEFAULT '', 
17   PRIMARY KEY (id)
18 ) TYPE=InnoDB;