MySQL数据库表结构设计
第 1-13 条, 共 13 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
pid | int(10) | 0 | 否 | 上级频道ID | 普通索引 | 0 |
title | char(30) | 否 | 频道标题 | 无索引 | ||
url | char(100) | 否 | 频道连接 | 无索引 | ||
sort | int(10) | 0 | 否 | 导航排序 | 无索引 | 0 |
create_time | int(10) | 0 | 否 | 创建时间 | 无索引 | 0 |
yesapi_zhiguo_ocenter_channel_status | tinyint(4) | 0 | 否 | 状态 | 无索引 | 0 |
target | tinyint(2) | 0 | 否 | 新窗口打开 | 无索引 | 0 |
color | varchar(30) | 否 | 无索引 | |||
band_color | varchar(30) | 否 | 无索引 | |||
band_text | varchar(30) | 否 | 无索引 | |||
icon | varchar(20) | 否 | 无索引 | |||
image | int(11) | 否 | 无索引 | |||
remark | text | 否 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:智果内容付费-频道:https://open.yesapi.cn/tablelist/yesapi_zhiguo_ocenter_channel.html
-- 数据库大全:智果内容付费-频道
-- 来源:YesApi.cn
CREATE TABLE `yesapi_zhiguo_ocenter_channel` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) NOT NULL DEFAULT '0' COMMENT '上级频道ID',
`title` char(30) NOT NULL COMMENT '频道标题',
`url` char(100) NOT NULL COMMENT '频道连接',
`sort` int(10) NOT NULL DEFAULT '0' COMMENT '导航排序',
`create_time` int(10) NOT NULL DEFAULT '0' COMMENT '创建时间',
`yesapi_zhiguo_ocenter_channel_status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '状态',
`target` tinyint(2) NOT NULL DEFAULT '0' COMMENT '新窗口打开',
`color` varchar(30) NOT NULL COMMENT '',
`band_color` varchar(30) NOT NULL COMMENT '',
`band_text` varchar(30) NOT NULL COMMENT '',
`icon` varchar(20) NOT NULL COMMENT '',
`image` int(11) NOT NULL COMMENT '',
`remark` text NOT NULL COMMENT '',
KEY `pid` (`pid`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '智果内容付费-频道';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 智果内容付费-权限组与分类的对应关系表