MySQL数据库表结构设计
第 1-7 条, 共 7 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
yesapi_zhiguo_ocenter_super_links_type | int(1) | 1 | 否 | 类别(1:图片,2:普通) | 无索引 | 1 |
title | char(80) | 否 | 站点名称 | 无索引 | ||
cover_id | int(10) | 否 | 图片ID | 无索引 | ||
link | char(140) | 否 | 链接地址 | 无索引 | ||
yesapi_zhiguo_ocenter_super_links_level | int(3) | 0 | 否 | 优先级 | 无索引 | 0 |
yesapi_zhiguo_ocenter_super_links_status | tinyint(2) | 1 | 否 | 状态(0:禁用,1:正常) | 无索引 | 1 |
create_time | int(11) | 0 | 否 | 添加时间 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:智果内容付费-友情连接表:https://open.yesapi.cn/tablelist/yesapi_zhiguo_ocenter_super_links.html
-- 数据库大全:智果内容付费-友情连接表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_zhiguo_ocenter_super_links` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`yesapi_zhiguo_ocenter_super_links_type` int(1) NOT NULL DEFAULT '1' COMMENT '类别(1:图片,2:普通)',
`title` char(80) NOT NULL COMMENT '站点名称',
`cover_id` int(10) NOT NULL COMMENT '图片ID',
`link` char(140) NOT NULL COMMENT '链接地址',
`yesapi_zhiguo_ocenter_super_links_level` int(3) NOT NULL DEFAULT '0' COMMENT '优先级',
`yesapi_zhiguo_ocenter_super_links_status` tinyint(2) NOT NULL DEFAULT '1' COMMENT '状态(0:禁用,1:正常)',
`create_time` int(11) NOT NULL DEFAULT '0' COMMENT '添加时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '智果内容付费-友情连接表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 智果内容付费-权限组与分类的对应关系表