Initial commit

This commit is contained in:
易焱
2021-03-13 18:42:01 +08:00
commit d9a3c376d5
3243 changed files with 627198 additions and 0 deletions
@@ -0,0 +1,3 @@
INSERT INTO `@cms@table_field` VALUES (NULL, '@table_id@', 'title', '标题','varchar',255, 'text', '', '', '', '', 1,0,0,0,0,0,0,'','','');
INSERT INTO `@cms@table_field` VALUES (NULL, '@table_id@', 'thumb', '缩略图','varchar',255,'image', '', '', '', '', 1,0,0,0,0,1000,0,'','','');
INSERT INTO `@cms@table_field` VALUES (NULL, '@table_id@', 'newstime', '时间','int',11,'date', '', '', '', '', 1,0,0,0,0,0,0,'','','');
@@ -0,0 +1,30 @@
CREATE TABLE `@cms@@zhubiao@` (
`id` mediumint(8) unsigned NOT NULL auto_increment,
`catid` smallint(5) unsigned NOT NULL DEFAULT '0',
`modelid` smallint(5) unsigned NOT NULL DEFAULT '0',
`checked` smallint(5) unsigned NOT NULL DEFAULT '0',
`title` varchar(255) NOT NULL DEFAULT '',
`thumb` varchar(255) NOT NULL DEFAULT '',
`linkurl` varchar(255) NOT NULL DEFAULT '',
`newstime` int(11) unsigned NOT NULL DEFAULT '0',
`pagetitle` varchar(255) NOT NULL DEFAULT '',
`keywords` varchar(255) NOT NULL DEFAULT '',
`description` varchar(255) NOT NULL DEFAULT '',
`pubid` bigint(15) unsigned NOT NULL DEFAULT '0',
`sort` tinyint(3) unsigned NOT NULL DEFAULT '0',
`userid` int(11) unsigned NOT NULL DEFAULT '0',
`username` char(20) NOT NULL DEFAULT '',
`addtime` int(10) unsigned NOT NULL DEFAULT '0',
`editortime` int(10) unsigned NOT NULL DEFAULT '0',
`is_good` int(11) NOT NULL DEFAULT '0' COMMENT '推荐',
`is_top` int(11) NOT NULL DEFAULT '0' COMMENT '置顶',
`views` int(11) NOT NULL DEFAULT '0' COMMENT '点击总数',
`goods` int(11) NOT NULL DEFAULT '0' COMMENT '点赞数',
`favs` int(11) NOT NULL DEFAULT '0' COMMENT '收藏数',
`comments` int(11) NOT NULL DEFAULT '0' COMMENT '评论数',
`viewtemp` int(11) NOT NULL DEFAULT '0' COMMENT '单独内容模板',
PRIMARY KEY (`id`),
KEY `checked` (`checked`),
KEY `catid` (`catid`),
KEY `sort` (`sort`)
) ENGINE=MyISAM COMMENT='@zhubiao_note@' DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
@@ -0,0 +1,4 @@
CREATE TABLE `@cms@@zhubiao@_data` (
`id` mediumint(8) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM COMMENT='@fubiao_note@' DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;