+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_migo_sys_user_role:/tablelist/okayapi_migo_sys_user_role.html


-- MySQL Table okayapi_migo_sys_user_role
-- From: OkayAPI.com
CREATE TABLE `okayapi_migo_sys_user_role` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `user_id` bigint(20) NULL COMMENT '用户ID',
    `role_id` bigint(20) NULL COMMENT '角色ID',
    KEY `user_id` (`user_id`),
    KEY `role_id` (`role_id`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'migo权限管理-用户与角色对应关系';

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
user_idbigint(20)用户ID
role_idbigint(20)角色ID

Guess You Like

MySQL Table Design okayapi_migo_schedule_job

MySQL Table Design okayapi_migo_schedule_job_log

MySQL Table Design okayapi_migo_sys_config

MySQL Table Design okayapi_migo_sys_log

MySQL Table Design okayapi_migo_sys_menu

MySQL Table Design okayapi_migo_sys_oss

MySQL Table Design okayapi_migo_sys_role

MySQL Table Design okayapi_migo_sys_role_menu

MySQL Table Design okayapi_migo_sys_user

MySQL Table Design okayapi_migo_tb_token

MySQL Table Design okayapi_migo_tb_user

MySQL Table Design okayapi_rights_assign

TOP ↑