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