Feat openemr fix 7480 7494 email prescription (#7495)
[openemr.git] / contrib / forms / snellen / table.sql
blob040d77a795bdedab13f44f019902c00364791594
1 CREATE TABLE IF NOT EXISTS `form_snellen` (
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,
10   `left_2`           text,
11   `right_1`           text,
12   `right_2`           text,
13   `notes`           text, 
14   PRIMARY KEY (id)
15 ) ENGINE=InnoDB;