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.
14 lines
384 B
14 lines
384 B
CREATE TABLE IF NOT EXISTS `form_soap` ( |
|
`id` bigint(20) NOT NULL auto_increment, |
|
`date` datetime default NULL, |
|
`pid` bigint(20) default 0, |
|
`user` varchar(255) default NULL, |
|
`groupname` varchar(255) default NULL, |
|
`authorized` tinyint(4) default 0, |
|
`activity` tinyint(4) default 0, |
|
`subjective` text, |
|
`objective` text, |
|
`assessment` text, |
|
`plan` text, |
|
PRIMARY KEY (id) |
|
) ENGINE=InnoDB;
|
|
|