MySQL Create Table SQL
Table Structure: okayapi_f_base_user_role:/tablelist/okayapi_f_base_user_role.html
-- MySQL Table okayapi_f_base_user_role
-- From: OkayAPI.com
CREATE TABLE `okayapi_f_base_user_role` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`priority` int(11) NULL COMMENT '',
`role_id` bigint(20) NULL COMMENT '',
`user_id` bigint(20) NULL COMMENT '',
KEY `priority` (`priority`),
KEY `role_id` (`role_id`),
KEY `user_id` (`user_id`),
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-3 of 3 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
priority | int(11) | 否 | ||||
role_id | bigint(20) | 是 | Normal Index | |||
user_id | bigint(20) | 是 | Normal Index |