Files
crm.clientright.ru/modules/EmailTemplates/schema.xml

29 lines
944 B
XML
Raw Normal View History

<?xml version='1.0'?>
<schema>
<tables>
<table>
<name>vtiger_emailtemplates</name>
<sql><![CDATA[CREATE TABLE `vtiger_emailtemplates` (
`foldername` varchar(100) DEFAULT NULL,
`templatename` varchar(100) DEFAULT NULL,
`templatepath` varchar(100) DEFAULT NULL,
`subject` varchar(255) DEFAULT NULL,
`description` text,
`body` text,
`deleted` int(1) NOT NULL DEFAULT '0',
`templateid` int(19) NOT NULL AUTO_INCREMENT,
`systemtemplate` int(1) NOT NULL DEFAULT '0',
`module` varchar(100) DEFAULT NULL,
PRIMARY KEY (`templateid`),
KEY `emailtemplates_foldernamd_templatename_subject_idx` (`foldername`,`templatename`,`subject`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8]]></sql>
</table>
<table>
<name>vtiger_emailtemplates_seq</name>
<sql><![CDATA[CREATE TABLE `vtiger_emailtemplates_seq` (
`id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
</table>
</tables>
</schema>