Subversion Repositories cheapmusic

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
103 - 1
--
2
-- Seo panel test Plugin table
3
--
4
 
5
CREATE TABLE IF NOT EXISTS `testplugin` (
6
  `id` int(11) NOT NULL AUTO_INCREMENT,
7
  `title` varchar(64) CHARACTER SET latin1 NOT NULL,
8
  `description` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
9
  `status` tinyint(1) NOT NULL DEFAULT '0',
10
  PRIMARY KEY (`id`)
11
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;