MySQL数据库表结构设计
第 1-5 条, 共 5 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
role_id | int(11) | 否 | 无索引 | |||
yesapi_zhiguo_ocenter_role_config_name | varchar(25) | 否 | 标识 | 无索引 | ||
category | varchar(25) | 否 | 归类标识 | 无索引 | ||
yesapi_zhiguo_ocenter_role_config_value | text | 否 | 配置值 | 无索引 | ||
yesapi_zhiguo_ocenter_role_config_data | text | 否 | 该配置的其它值 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:智果内容付费-角色配置表:https://open.yesapi.cn/tablelist/yesapi_zhiguo_ocenter_role_config.html
-- 数据库大全:智果内容付费-角色配置表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_zhiguo_ocenter_role_config` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`role_id` int(11) NOT NULL COMMENT '',
`yesapi_zhiguo_ocenter_role_config_name` varchar(25) NOT NULL COMMENT '标识',
`category` varchar(25) NOT NULL COMMENT '归类标识',
`yesapi_zhiguo_ocenter_role_config_value` text NOT NULL COMMENT '配置值',
`yesapi_zhiguo_ocenter_role_config_data` text NOT NULL COMMENT '该配置的其它值',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '智果内容付费-角色配置表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 智果内容付费-权限组与分类的对应关系表