migrate old clinical notes form to clinic note (#4516)
[openemr.git] / contrib / forms / clinic_note / table.sql
blobd6fe649381e03793e6a4c716316d01c48558921d
1 CREATE TABLE IF NOT EXISTS form_clinic_note (
2  id                bigint(20)   NOT NULL auto_increment,
3  activity          tinyint(1)   NOT NULL DEFAULT 1,  -- 0 if deleted
5  history           text,
6  examination       text,
7  plan              text,
9  followup_required int(11)      NOT NULL DEFAULT 0,  -- radio
10  followup_timing   varchar(255) NOT NULL DEFAULT '',
12  PRIMARY KEY (id)
13 ) ENGINE=InnoDB;