· 8 years ago · Nov 23, 2017, 05:36 PM
1DROP TABLE IF EXISTS `tac_templates`;
2/*!40101 SET @saved_cs_client = @@character_set_client */;
3/*!40101 SET character_set_client = utf8 */;
4CREATE TABLE `tac_templates` (
5 `tplid` int(11) NOT NULL auto_increment,
6 `name` varchar(128) NOT NULL,
7 `template` text NOT NULL,
8 PRIMARY KEY (`tplid`),
9 UNIQUE KEY `name` (`name`)
10) ENGINE=InnoDB DEFAULT CHARSET=utf8;
11/*!40101 SET character_set_client = @saved_cs_client */;