MySQL数据库表结构设计
第 1-4 条, 共 4 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
url | char(255) | 否 | 链接地址 | 唯一索引 | ||
short | char(100) | 否 | 短网址 | 无索引 | ||
yesapi_zhiguo_ocenter_url_status | tinyint(2) | 2 | 否 | 状态 | 无索引 | 2 |
create_time | int(10) | 0 | 否 | 创建时间 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:智果内容付费-链接表:https://open.yesapi.cn/tablelist/yesapi_zhiguo_ocenter_url.html
-- 数据库大全:智果内容付费-链接表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_zhiguo_ocenter_url` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`url` char(255) NOT NULL COMMENT '链接地址',
`short` char(100) NOT NULL COMMENT '短网址',
`yesapi_zhiguo_ocenter_url_status` tinyint(2) NOT NULL DEFAULT '2' COMMENT '状态',
`create_time` int(10) NOT NULL DEFAULT '0' COMMENT '创建时间',
UNIQUE KEY `url` (`url`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '智果内容付费-链接表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 智果内容付费-权限组与分类的对应关系表