MySQL数据库表结构设计
第 1-10 条, 共 10 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
catid | smallint(5) | 0 | 否 | 栏目ID | 无索引 | 0 |
posid | smallint(5) | 0 | 否 | 推荐位ID | 普通索引 | 0 |
module | char(20) | 否 | 模型 | 无索引 | ||
modelid | smallint(6) | 0 | 否 | 模型ID | 无索引 | 0 |
thumb | tinyint(1) | 0 | 否 | 是否有缩略图 | 无索引 | 0 |
data | mediumtext | 是 | 数据信息 | 无索引 | ||
listorder | mediumint(8) | 0 | 否 | 排序 | 普通索引 | 0 |
expiration | int(10) | 否 | 无索引 | |||
extention | char(30) | 否 | 无索引 | |||
synedit | tinyint(1) | 0 | 否 | 是否同步编辑 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:内容管理系统-推荐位数据表:https://open.yesapi.cn/tablelist/yesapi_hkcms_position_data.html
-- 数据库大全:内容管理系统-推荐位数据表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_hkcms_position_data` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`catid` smallint(5) NOT NULL DEFAULT '0' COMMENT '栏目ID',
`posid` smallint(5) NOT NULL DEFAULT '0' COMMENT '推荐位ID',
`module` char(20) NOT NULL COMMENT '模型',
`modelid` smallint(6) NOT NULL DEFAULT '0' COMMENT '模型ID',
`thumb` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否有缩略图',
`data` mediumtext NOT NULL COMMENT '数据信息',
`listorder` mediumint(8) NOT NULL DEFAULT '0' COMMENT '排序',
`expiration` int(10) NOT NULL COMMENT '',
`extention` char(30) NOT NULL COMMENT '',
`synedit` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否同步编辑',
KEY `posid` (`posid`),
KEY `listorder` (`listorder`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '内容管理系统-推荐位数据表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢

