MySQL数据库表结构设计
第 1-11 条, 共 11 条.
| 字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
|---|---|---|---|---|---|---|
| uid | int(11) | 否 | 无索引 | |||
| app | text | 否 | 无索引 | |||
| yesapi_zhiguo_ocenter_local_comment_mod | text | 否 | 无索引 | |||
| row_id | int(11) | 否 | 无索引 | |||
| parse | int(11) | 否 | 无索引 | |||
| content | varchar(1000) | 否 | 无索引 | |||
| create_time | int(11) | 否 | 无索引 | |||
| pid | int(11) | 否 | 无索引 | |||
| yesapi_zhiguo_ocenter_local_comment_status | int(11) | 否 | 无索引 | |||
| ip | bigint(20) | 否 | 无索引 | |||
| area | varchar(30) | 否 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:智果内容付费-本地评论:https://open.yesapi.cn/tablelist/yesapi_zhiguo_ocenter_local_comment.html
-- 数据库大全:智果内容付费-本地评论
-- 来源:YesApi.cn
CREATE TABLE `yesapi_zhiguo_ocenter_local_comment` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(11) NOT NULL COMMENT '',
`app` text NOT NULL COMMENT '',
`yesapi_zhiguo_ocenter_local_comment_mod` text NOT NULL COMMENT '',
`row_id` int(11) NOT NULL COMMENT '',
`parse` int(11) NOT NULL COMMENT '',
`content` varchar(1000) NOT NULL COMMENT '',
`create_time` int(11) NOT NULL COMMENT '',
`pid` int(11) NOT NULL COMMENT '',
`yesapi_zhiguo_ocenter_local_comment_status` int(11) NOT NULL COMMENT '',
`ip` bigint(20) NOT NULL COMMENT '',
`area` varchar(30) NOT NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '智果内容付费-本地评论';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 智果内容付费-权限组与分类的对应关系表
粤公网安备44011302002121号
|
