Merge pull request #7535 from stephenwaite/bug_fix_w1
[openemr.git] / contrib / forms / hist_exam_plan / table.sql
blobd42f1f0354f4f69d494878e9227be6847af7faf7
1 CREATE TABLE IF NOT EXISTS form_hist_exam_plan (
2  id          bigint(20)   NOT NULL auto_increment,
3  activity    tinyint(1)   NOT NULL DEFAULT 1, -- 0 if deleted
4  history     text,
5  examination text,
6  plan        text,
7  PRIMARY KEY (id)
8 ) ENGINE=InnoDB;