MySQL5.5 code fix for .sql files; changed TYPE= to ENGINE=
[openemr.git] / contrib / forms / nursing_notes / table.sql
blobf02fe61823bc8ae9e3372053878a8317596e0b2b
1 CREATE TABLE IF NOT EXISTS `form_nursing_notes` (
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   `assessment`          varchar(255) NOT NULL DEFAULT '',
10   `procedures`          varchar(255) NOT NULL DEFAULT '',
11   `discharge`           varchar(255) NOT NULL DEFAULT '',
12   PRIMARY KEY (id)
13 ) ENGINE=InnoDB;