+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_72crm_admin_role_menu:/tablelist/okayapi_72crm_admin_role_menu.html


-- MySQL Table okayapi_72crm_admin_role_menu
-- From: OkayAPI.com
CREATE TABLE `okayapi_72crm_admin_role_menu` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `role_id` int(11) NOT NULL COMMENT '角色ID',
    `menu_id` int(11) NOT NULL COMMENT '菜单ID',
    KEY `role_id` (`role_id`),
    KEY `menu_id` (`menu_id`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CRM-角色菜单对应关系表';

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(11)角色ID
menu_idint(11)菜单ID

Guess You Like

MySQL Table Design okayapi_72crm_admin_config

MySQL Table Design okayapi_72crm_admin_dept

MySQL Table Design okayapi_72crm_admin_examine

MySQL Table Design okayapi_72crm_admin_examine_log

MySQL Table Design okayapi_72crm_admin_examine_record

MySQL Table Design okayapi_72crm_admin_examine_step

MySQL Table Design okayapi_72crm_admin_field_sort

MySQL Table Design okayapi_72crm_admin_fieldv

MySQL Table Design okayapi_72crm_admin_file

MySQL Table Design okayapi_72crm_admin_menu

MySQL Table Design okayapi_72crm_admin_message

MySQL Table Design okayapi_72crm_admin_record

MySQL Table Design okayapi_72crm_admin_role

MySQL Table Design okayapi_72crm_admin_scene

MySQL Table Design okayapi_72crm_admin_scene_default

MySQL Table Design okayapi_72crm_admin_user

MySQL Table Design okayapi_72crm_admin_user_role

MySQL Table Design okayapi_72crm_crm_achievement

MySQL Table Design okayapi_72crm_crm_action_record

MySQL Table Design okayapi_72crm_crm_area

TOP ↑