You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
591 B
21 lines
591 B
-- |
|
-- Table structure for table `form_care_plan` |
|
-- |
|
|
|
CREATE TABLE IF NOT EXISTS `form_care_plan` ( |
|
`id` bigint(20) NOT NULL, |
|
`date` DATE DEFAULT NULL, |
|
`pid` bigint(20) DEFAULT NULL, |
|
`encounter` varchar(255) DEFAULT NULL, |
|
`user` varchar(255) DEFAULT NULL, |
|
`groupname` varchar(255) DEFAULT NULL, |
|
`authorized` tinyint(4) DEFAULT NULL, |
|
`activity` tinyint(4) DEFAULT NULL, |
|
`code` varchar(255) DEFAULT NULL, |
|
`codetext` text, |
|
`description` text, |
|
`external_id` VARCHAR(30) DEFAULT NULL, |
|
`care_plan_type` varchar(30) DEFAULT NULL, |
|
`note_related_to` TEXT |
|
) ENGINE=InnoDB; |
|
|
|
|