video_store.sql 768 B

12345678910111213141516171819
  1. DROP TABLE IF EXISTS `phpcms_video_store`;
  2. CREATE TABLE IF NOT EXISTS `phpcms_video_store` (
  3. `videoid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  4. `title` char(60) NOT NULL,
  5. `vid` char(40) NOT NULL,
  6. `keywords` char(40) NOT NULL,
  7. `description` char(255) NOT NULL,
  8. `status` tinyint(3) NOT NULL DEFAULT '0',
  9. `listorder` smallint(5) unsigned NOT NULL DEFAULT '0',
  10. `addtime` int(10) unsigned NOT NULL DEFAULT '0',
  11. `userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
  12. `picpath` char(120) NOT NULL,
  13. `size` char(20) NOT NULL,
  14. `timelen` mediumint(9) NOT NULL DEFAULT '0',
  15. `userupload` tinyint(1) NOT NULL DEFAULT '0',
  16. `channelid` tinyint(3) unsigned NOT NULL DEFAULT '0',
  17. PRIMARY KEY (`videoid`),
  18. KEY `videoid` (`videoid`,`status`)
  19. ) TYPE=MyISAM ;