MySQL数据库表结构设计
第 1-6 条, 共 6 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
module | varchar(20) | 否 | 规则所属module | 普通索引 | ||
yesapi_zhiguo_ocenter_m_auth_rule_type | tinyint(2) | 1 | 否 | 1-url;2-主菜单 | 无索引 | 1 |
yesapi_zhiguo_ocenter_m_auth_rule_name | char(80) | 否 | 规则唯一英文标识 | 无索引 | ||
title | char(20) | 否 | 规则中文描述 | 无索引 | ||
yesapi_zhiguo_ocenter_m_auth_rule_status | tinyint(1) | 1 | 否 | 是否有效(0:无效,1:有效) | 无索引 | 1 |
yesapi_zhiguo_ocenter_m_auth_rule_condition | varchar(300) | 否 | 规则附加条件 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:智果内容付费-验证规则:https://open.yesapi.cn/tablelist/yesapi_zhiguo_ocenter_m_auth_rule.html
-- 数据库大全:智果内容付费-验证规则
-- 来源:YesApi.cn
CREATE TABLE `yesapi_zhiguo_ocenter_m_auth_rule` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`module` varchar(20) NOT NULL COMMENT '规则所属module',
`yesapi_zhiguo_ocenter_m_auth_rule_type` tinyint(2) NOT NULL DEFAULT '1' COMMENT '1-url;2-主菜单',
`yesapi_zhiguo_ocenter_m_auth_rule_name` char(80) NOT NULL COMMENT '规则唯一英文标识',
`title` char(20) NOT NULL COMMENT '规则中文描述',
`yesapi_zhiguo_ocenter_m_auth_rule_status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否有效(0:无效,1:有效)',
`yesapi_zhiguo_ocenter_m_auth_rule_condition` varchar(300) NOT NULL COMMENT '规则附加条件',
KEY `module` (`module`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '智果内容付费-验证规则';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 智果内容付费-权限组与分类的对应关系表