MySQL5.5 code fix for .sql files; changed TYPE= to ENGINE=
[openemr.git] / contrib / forms / podiatry / table.sql
blob15cca9bb34ca762edcf6dbce61b1f150979826d9
1 CREATE TABLE IF NOT EXISTS form_podiatry (
2  id                bigint(20)   NOT NULL auto_increment,
3  activity          tinyint(1)   NOT NULL DEFAULT 1,  -- 0 if deleted
5  notes             text         NOT NULL DEFAULT '',
7  followup_required tinyint(1)   NOT NULL DEFAULT 0,  -- checkbox
8  followup_timing   varchar(255) NOT NULL DEFAULT '',
9  followup_location varchar(255) NOT NULL DEFAULT '',
11  PRIMARY KEY (id)
12 ) ENGINE=MyISAM;