renewenewsinfovote_1.php
1.14 KB
<?php
@include("../../inc/header.php");
/*
SoftName : EmpireBak
Author : wm_chief
Copyright: Powered by www.phome.net
*/
E_D("DROP TABLE IF EXISTS `renewenewsinfovote`;");
E_C("CREATE TABLE `renewenewsinfovote` (
`pubid` bigint(16) unsigned NOT NULL DEFAULT '0',
`id` int(10) unsigned NOT NULL DEFAULT '0',
`classid` smallint(5) unsigned NOT NULL DEFAULT '0',
`title` varchar(120) NOT NULL DEFAULT '',
`votenum` int(10) unsigned NOT NULL DEFAULT '0',
`voteip` mediumtext NOT NULL,
`votetext` text NOT NULL,
`voteclass` tinyint(1) NOT NULL DEFAULT '0',
`doip` tinyint(1) NOT NULL DEFAULT '0',
`dotime` date NOT NULL DEFAULT '0000-00-00',
`tempid` smallint(5) unsigned NOT NULL DEFAULT '0',
`width` int(10) unsigned NOT NULL DEFAULT '0',
`height` int(10) unsigned NOT NULL DEFAULT '0',
`diyotherlink` tinyint(1) NOT NULL DEFAULT '0',
`infouptime` int(10) unsigned NOT NULL DEFAULT '0',
`infodowntime` int(10) unsigned NOT NULL DEFAULT '0',
`copyids` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`pubid`),
KEY `id` (`id`,`classid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8");
@include("../../inc/footer.php");
?>