Clickmap Graphical API and Pain Form
[openemr.git] / contrib / forms / scanned_notes / table.sql
blobc7de0d5862ebca523e80f16cf5e5b69e211be98d
1 CREATE TABLE IF NOT EXISTS form_scanned_notes (
2  id                bigint(20)   NOT NULL auto_increment,
3  activity          tinyint(1)   NOT NULL DEFAULT 1,  -- 0 if deleted
4  notes             text         NOT NULL DEFAULT '',
5  PRIMARY KEY (id)
6 ) TYPE=MyISAM;