renewenewszt_1.php
1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
@include("../../inc/header.php");
/*
SoftName : EmpireBak
Author : wm_chief
Copyright: Powered by www.phome.net
*/
E_D("DROP TABLE IF EXISTS `renewenewszt`;");
E_C("CREATE TABLE `renewenewszt` (
`ztid` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`ztname` varchar(60) NOT NULL DEFAULT '',
`onclick` int(10) unsigned NOT NULL DEFAULT '0',
`ztnum` tinyint(3) unsigned NOT NULL DEFAULT '0',
`listtempid` smallint(5) unsigned NOT NULL DEFAULT '0',
`ztpath` varchar(255) NOT NULL DEFAULT '',
`zttype` varchar(10) NOT NULL DEFAULT '',
`zturl` varchar(200) NOT NULL DEFAULT '',
`classid` smallint(5) unsigned NOT NULL DEFAULT '0',
`islist` tinyint(1) NOT NULL DEFAULT '0',
`maxnum` int(11) NOT NULL DEFAULT '0',
`reorder` varchar(50) NOT NULL DEFAULT '',
`intro` text NOT NULL,
`ztimg` varchar(255) NOT NULL DEFAULT '',
`zcid` smallint(5) unsigned NOT NULL DEFAULT '0',
`showzt` tinyint(1) NOT NULL DEFAULT '0',
`ztpagekey` varchar(255) NOT NULL DEFAULT '',
`classtempid` smallint(5) unsigned NOT NULL DEFAULT '0',
`myorder` smallint(5) unsigned NOT NULL DEFAULT '0',
`usezt` tinyint(1) NOT NULL DEFAULT '0',
`yhid` smallint(5) unsigned NOT NULL DEFAULT '0',
`endtime` int(10) unsigned NOT NULL DEFAULT '0',
`closepl` tinyint(1) NOT NULL DEFAULT '0',
`checkpl` tinyint(1) NOT NULL DEFAULT '0',
`restb` tinyint(3) unsigned NOT NULL DEFAULT '0',
`usernames` varchar(255) NOT NULL DEFAULT '',
`addtime` int(10) unsigned NOT NULL DEFAULT '0',
`pltempid` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`ztid`),
KEY `classid` (`classid`),
KEY `zcid` (`zcid`),
KEY `usezt` (`usezt`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8");
@include("../../inc/footer.php");
?>