link.sql 787 B

123456789101112131415161718
  1. DROP TABLE IF EXISTS `phpcms_link`;
  2. CREATE TABLE `phpcms_link` (
  3. `linkid` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  4. `siteid` smallint(5) unsigned DEFAULT '0',
  5. `typeid` smallint(5) unsigned NOT NULL DEFAULT '0',
  6. `linktype` tinyint(1) unsigned NOT NULL DEFAULT '0',
  7. `name` varchar(50) NOT NULL DEFAULT '',
  8. `url` varchar(255) NOT NULL DEFAULT '',
  9. `logo` varchar(255) NOT NULL DEFAULT '',
  10. `introduce` text NOT NULL,
  11. `username` varchar(30) NOT NULL DEFAULT '',
  12. `listorder` smallint(5) unsigned NOT NULL DEFAULT '0',
  13. `elite` tinyint(1) unsigned NOT NULL DEFAULT '0',
  14. `passed` tinyint(1) unsigned NOT NULL DEFAULT '0',
  15. `addtime` int(10) unsigned NOT NULL DEFAULT '0',
  16. PRIMARY KEY (`linkid`),
  17. KEY `typeid` (`typeid`,`passed`,`listorder`,`linkid`)
  18. ) TYPE=MyISAM;