Added 3 forms (Aftercare Plan, Transfer Summary, Treatment Plan)
[openemr.git] / interface / forms / treatment_plan / table.sql
blobf115a58967e3811916e9277a1348aae542f37571
1 --
2 -- Table structure for table `form_treatment_plan`
3 --
5 CREATE TABLE IF NOT EXISTS `form_treatment_plan` (
6   `id` bigint(20) NOT NULL AUTO_INCREMENT,
7   `date` datetime DEFAULT NULL,
8   `pid` bigint(20) DEFAULT NULL,
9   `user` varchar(255) DEFAULT NULL,
10   `groupname` varchar(255) DEFAULT NULL,
11   `authorized` tinyint(4) DEFAULT NULL,
12   `activity` tinyint(4) DEFAULT NULL,
13   `client_name` varchar(255) DEFAULT NULL,
14   `client_number` bigint(20) DEFAULT NULL,
15   `provider` varchar(255) DEFAULT NULL,
16   `admit_date` varchar(255) DEFAULT NULL,
17   `presenting_issues` text,
18   `patient_history` text,
19   `medications` text,
20   `anyother_relevant_information` text,
21   `diagnosis` text,
22   `treatment_received` text,
23   `recommendation_for_follow_up` text,
24    PRIMARY KEY (`id`)
25 ) ENGINE=InnoDB;