DROP TABLE IF EXISTS `phpcms_video_store`; CREATE TABLE IF NOT EXISTS `phpcms_video_store` ( `videoid` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` char(60) NOT NULL, `vid` char(40) NOT NULL, `keywords` char(40) NOT NULL, `description` char(255) NOT NULL, `status` tinyint(3) NOT NULL DEFAULT '0', `listorder` smallint(5) unsigned NOT NULL DEFAULT '0', `addtime` int(10) unsigned NOT NULL DEFAULT '0', `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `picpath` char(120) NOT NULL, `size` char(20) NOT NULL, `timelen` mediumint(9) NOT NULL DEFAULT '0', `userupload` tinyint(1) NOT NULL DEFAULT '0', `channelid` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`videoid`), KEY `videoid` (`videoid`,`status`) ) TYPE=MyISAM ;