+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_zheng_upms_role_permission:/tablelist/okayapi_zheng_upms_role_permission.html


-- MySQL Table okayapi_zheng_upms_role_permission
-- From: OkayAPI.com
CREATE TABLE `okayapi_zheng_upms_role_permission` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `role_id` int(10) NOT NULL COMMENT '角色编号',
    `permission_id` int(10) NOT NULL COMMENT '权限编号',
    KEY `role_id` (`role_id`),
    KEY `permission_id` (`permission_id`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'zheng敏捷开发-角色权限关联表';

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


MySQL database table structure design

Displaying 1-2 of 2 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
role_idint(10)角色编号
permission_idint(10)权限编号

Guess You Like

MySQL Table Design okayapi_logs

MySQL Table Design okayapi_app_version

MySQL Table Design okayapi_tea

MySQL Table Design okayapi_tea_swiper

MySQL Table Design okayapi_tea_moment

MySQL Table Design okayapi_tea_order

MySQL Table Design okayapi_tea_user

MySQL Table Design okayapi_tea_shopcar

MySQL Table Design okayapi_zheng_cms_article

MySQL Table Design okayapi_zheng_cms_article_category

MySQL Table Design okayapi_zheng_cms_article_tag

MySQL Table Design okayapi_zheng_cms_category

MySQL Table Design okayapi_zheng_cms_comment

MySQL Table Design okayapi_zheng_cms_page

MySQL Table Design okayapi_zheng_cms_setting

MySQL Table Design okayapi_zheng_cms_system

MySQL Table Design okayapi_zheng_cms_tag

MySQL Table Design okayapi_zheng_cms_topic

MySQL Table Design okayapi_zheng_pay_in_order

MySQL Table Design okayapi_zheng_pay_in_order_detail

TOP ↑