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;
