MySQL数据库表结构设计
第 1-18 条, 共 18 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
blockname | varchar(50) | 否 | 无索引 | |||
modname | varchar(50) | 否 | 普通索引 | |||
filename | varchar(50) | 否 | 无索引 | |||
classname | varchar(50) | 否 | 无索引 | |||
side | tinyint(3) | 0 | 否 | 无索引 | 0 | |
title | text | 否 | 无索引 | |||
description | text | 否 | 无索引 | |||
content | mediumtext | 否 | 无索引 | |||
vars | text | 否 | 无索引 | |||
template | varchar(50) | 否 | 无索引 | |||
cachetime | int(11) | 0 | 否 | 无索引 | 0 | |
contenttype | tinyint(3) | 0 | 否 | 无索引 | 0 | |
weight | mediumint(8) | 0 | 否 | 无索引 | 0 | |
showstatus | tinyint(1) | 0 | 否 | 无索引 | 0 | |
custom | tinyint(1) | 0 | 否 | 无索引 | 0 | |
canedit | tinyint(1) | 0 | 否 | 无索引 | 0 | |
publish | tinyint(1) | 0 | 否 | 普通索引 | 0 | |
hasvars | tinyint(1) | 0 | 否 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:jieqi小说-章节:https://open.yesapi.cn/tablelist/yesapi_jieqi_system_blocks.html
-- 数据库大全:jieqi小说-章节
-- 来源:YesApi.cn
CREATE TABLE `yesapi_jieqi_system_blocks` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`blockname` varchar(50) NOT NULL COMMENT '',
`modname` varchar(50) NOT NULL COMMENT '',
`filename` varchar(50) NOT NULL COMMENT '',
`classname` varchar(50) NOT NULL COMMENT '',
`side` tinyint(3) NOT NULL DEFAULT '0' COMMENT '',
`title` text NOT NULL COMMENT '',
`description` text NOT NULL COMMENT '',
`content` mediumtext NOT NULL COMMENT '',
`vars` text NOT NULL COMMENT '',
`template` varchar(50) NOT NULL COMMENT '',
`cachetime` int(11) NOT NULL DEFAULT '0' COMMENT '',
`contenttype` tinyint(3) NOT NULL DEFAULT '0' COMMENT '',
`weight` mediumint(8) NOT NULL DEFAULT '0' COMMENT '',
`showstatus` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`custom` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`canedit` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`publish` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`hasvars` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
KEY `modname` (`modname`),
KEY `publish` (`publish`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'jieqi小说-章节';
复制后,到数据库执行,即可创建此数据库表。