Add issue relations to clinical notes (#4466)
[openemr.git] / interface / forms / care_plan / table.sql
blob0007eab266a091c1953a4a7b6d4499636782a2bb
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   `care_plan_type` varchar(30) DEFAULT NULL,
19   `note_related_to` TEXT
20 ) ENGINE=InnoDB;