MySQL数据库表结构设计
第 1-8 条, 共 8 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
plate_id | int(11) | 否 | 无索引 | |||
user_id | int(11) | 0 | 否 | 无索引 | 0 | |
admin_ids | text | 是 | 无索引 | |||
is_view | tinyint(1) | 否 | 无索引 | |||
is_menu | tinyint(1) | 0 | 否 | 无索引 | 0 | |
label | varchar(28) | 否 | 无索引 | |||
allow_posting | tinyint(1) | 否 | 是否允许发帖 | 无索引 | ||
date_added | datetime | 否 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:openant电商-论坛版块:https://open.yesapi.cn/tablelist/yesapi_openant_bbs_plate.html
-- 数据库大全:openant电商-论坛版块
-- 来源:YesApi.cn
CREATE TABLE `yesapi_openant_bbs_plate` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`plate_id` int(11) NOT NULL COMMENT '',
`user_id` int(11) NOT NULL DEFAULT '0' COMMENT '',
`admin_ids` text NOT NULL COMMENT '',
`is_view` tinyint(1) NOT NULL COMMENT '',
`is_menu` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`label` varchar(28) NOT NULL COMMENT '',
`allow_posting` tinyint(1) NOT NULL COMMENT '是否允许发帖',
`date_added` datetime NOT NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'openant电商-论坛版块';
复制后,到数据库执行,即可创建此数据库表。