initial support for multiple browser windows
[openemr.git] / contrib / forms / cricket_injury_audit / table.sql
blob15eae2c32d63d25797c9a13eec0122683beb068f
1 CREATE TABLE IF NOT EXISTS form_cricket_injury_audit (
2  id          bigint(20)   NOT NULL auto_increment,
3  activity    tinyint(1)   NOT NULL DEFAULT 1,
4  cicounty    int(11)      NOT NULL DEFAULT 0,
5  citeam      int(11)      NOT NULL DEFAULT 0,
6  ciduration  int(11)      NOT NULL DEFAULT 0,
7  cirole      int(11)      NOT NULL DEFAULT 0,
8  cimatchtype int(11)      NOT NULL DEFAULT 0,
9  cicause     int(11)      NOT NULL DEFAULT 0,
10  ciactivity  int(11)      NOT NULL DEFAULT 0,
11  cibatside   int(11)      NOT NULL DEFAULT 0,
12  cibowlside  int(11)      NOT NULL DEFAULT 0,
13  cibowltype  int(11)      NOT NULL DEFAULT 0,
14  PRIMARY KEY (id)
15 ) TYPE=MyISAM;