get_collation(); return "CREATE TABLE {$wpdb->prefix}$this->table_name ( `ID` bigint(20) unsigned NOT NULL auto_increment, `subject` varchar(255) default NULL, `template` longtext, `type` tinyint(1) unsigned not null default 1 COMMENT '1 - Email 2 - SMS', `title` varchar(255) default NULL, `mode` tinyint(1) NOT NULL default 1 COMMENT '1 - text only 2 - wc 3 - raw html 4 - drag and drop', `data` longtext, `canned` tinyint(1) default 0, `created_at` datetime NOT NULL default '0000-00-00 00:00:00', `updated_at` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`ID`), KEY `type` (`type`), KEY `mode` (`mode`), KEY `canned` (`canned`) ) $collate;"; } } }