123456789101112131415161718 |
- DROP TABLE IF EXISTS `phpcms_poster`;
- CREATE TABLE IF NOT EXISTS `phpcms_poster` (
- `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
- `siteid` smallint(5) unsigned NOT NULL DEFAULT '0',
- `name` varchar(40) NOT NULL,
- `spaceid` smallint(5) unsigned NOT NULL DEFAULT '0',
- `type` varchar(10) NOT NULL,
- `setting` text NOT NULL,
- `startdate` int(10) unsigned NOT NULL DEFAULT '0',
- `enddate` int(10) unsigned NOT NULL DEFAULT '0',
- `addtime` int(10) unsigned NOT NULL DEFAULT '0',
- `hits` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `clicks` smallint(5) unsigned NOT NULL DEFAULT '0',
- `listorder` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `disabled` tinyint(1) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `spaceid` (`spaceid`,`siteid`,`disabled`,`listorder`)
- ) TYPE=MyISAM;
|