+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_kite_auth_role:/tablelist/okayapi_kite_auth_role.html


-- MySQL Table okayapi_kite_auth_role
-- From: OkayAPI.com
CREATE TABLE `okayapi_kite_auth_role` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `role_id` int(11) NULL COMMENT '',
    `role_name` varchar(255) NULL COMMENT '',
    `rule_ids` varchar(1024) NULL COMMENT '角色拥有的权限集合',
    `site_ids` varchar(1024) NULL COMMENT '站点ID集合',
    `lang_var` varchar(64) NULL COMMENT '语言表示',
    `sort` int(11) NULL DEFAULT '0' COMMENT '排序',
    KEY `role_id` (`role_id`),
    KEY `role_name` (`role_name`),
    KEY `rule_ids` (`rule_ids`),
    KEY `site_ids` (`site_ids`),
    KEY `lang_var` (`lang_var`),
    KEY `sort` (`sort`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '建站系统-权限集合表';

After replication, you can go to the database to create the database table.


MySQL database table structure design

Displaying 1-6 of 6 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
role_idint(11)
role_namevarchar(255)
rule_idsvarchar(1024)角色拥有的权限集合
site_idsvarchar(1024)站点ID集合
lang_varvarchar(64)语言表示
sortint(11)0排序0

Guess You Like

MySQL Table Design okayapi_kite_addons

MySQL Table Design okayapi_kite_auth_rule

MySQL Table Design okayapi_kite_auth_user

MySQL Table Design okayapi_kite_block

MySQL Table Design okayapi_kite_document_category

MySQL Table Design okayapi_kite_document_comments

MySQL Table Design okayapi_kite_document_comments_like

MySQL Table Design okayapi_kite_document_content

MySQL Table Design okayapi_kite_document_content_extra

MySQL Table Design okayapi_kite_document_content_like

MySQL Table Design okayapi_kite_document_field

MySQL Table Design okayapi_kite_document_model

MySQL Table Design okayapi_kite_document_model_field

MySQL Table Design okayapi_kite_feedback

MySQL Table Design okayapi_kite_hooks

MySQL Table Design okayapi_kite_language

MySQL Table Design okayapi_kite_link

MySQL Table Design okayapi_kite_log

MySQL Table Design okayapi_kite_message

MySQL Table Design okayapi_kite_navigation

TOP ↑