Remove concurrent_layout and clarify layout and themes selections (#272)
[openemr.git] / interface / forms / care_plan / table.sql
blob2621f51aeed91b6e76e40a37ea95c595f79e4d95
1 --
2 -- Table structure for table `form_care_plan`
3 --
5 CREATE TABLE IF NOT EXISTS `form_care_plan` (
6   `id` bigint(20) NOT NULL,
7   `date` DATE DEFAULT NULL,
8   `pid` bigint(20) DEFAULT NULL,
9   `encounter` varchar(255) DEFAULT NULL,
10   `user` varchar(255) DEFAULT NULL,
11   `groupname` varchar(255) DEFAULT NULL,
12   `authorized` tinyint(4) DEFAULT NULL,
13   `activity` tinyint(4) DEFAULT NULL,
14   `code` varchar(255) DEFAULT NULL,
15   `codetext` text,
16   `description` text,
17   `external_id` VARCHAR(30) DEFAULT NULL
18 ) ENGINE=InnoDB;