+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_kite_auth_rule:/tablelist/okayapi_kite_auth_rule.html


-- MySQL Table okayapi_kite_auth_rule
-- From: OkayAPI.com
CREATE TABLE `okayapi_kite_auth_rule` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `pid` int(11) NOT NULL DEFAULT '0' COMMENT '',
    `module` varchar(64) NOT NULL COMMENT '规则所属模型',
    `name` varchar(64) NOT NULL COMMENT '规则名称',
    `url` varchar(64) NOT NULL COMMENT '',
    `menu` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否为菜单0 否 1是',
    `icon` varchar(64) NOT NULL DEFAULT 'fa fa-circle-o' COMMENT '图标',
    `sort` int(11) NOT NULL DEFAULT '0' COMMENT '排序',
    `description` varchar(255) NOT NULL COMMENT '备注说明',
    `lang_var` varchar(64) NOT NULL COMMENT '语言表示',
    KEY `pid` (`pid`),
    KEY `module` (`module`),
    KEY `name` (`name`),
    KEY `url` (`url`),
    KEY `menu` (`menu`),
    KEY `icon` (`icon`),
    KEY `sort` (`sort`),
    KEY `description` (`description`),
    KEY `lang_var` (`lang_var`),
    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-9 of 9 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
pidint(11)00
modulevarchar(64)规则所属模型
namevarchar(64)规则名称
urlvarchar(64)Normal Index
menutinyint(1)0是否为菜单0 否 1是0
iconvarchar(64)fa fa-circle-o图标fa fa-circle-o
sortint(11)0排序0
descriptionvarchar(255)备注说明
lang_varvarchar(64)语言表示Normal Index

Guess You Like

MySQL Table Design okayapi_kite_addons

MySQL Table Design okayapi_kite_auth_role

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 ↑