+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_opms_pms_permissions:/tablelist/okayapi_opms_pms_permissions.html


-- MySQL Table okayapi_opms_pms_permissions
-- From: OkayAPI.com
CREATE TABLE `okayapi_opms_pms_permissions` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `parentid` bigint(20) NULL COMMENT '',
    `okayapi_opms_pms_permissions_name` varchar(50) NULL COMMENT '中文名称',
    `ename` varchar(50) NULL COMMENT '英文名称',
    `icon` varchar(20) NULL COMMENT '',
    `nav` tinyint(1) NULL DEFAULT '0' COMMENT '1是0否导航',
    `okayapi_opms_pms_permissions_type` tinyint(1) NULL DEFAULT '0' COMMENT '0不显示1显示',
    `weight` tinyint(4) NULL DEFAULT '0' COMMENT '',
    KEY `parentid` (`parentid`),
    KEY `okayapi_opms_pms_permissions_name` (`okayapi_opms_pms_permissions_name`),
    KEY `ename` (`ename`),
    KEY `icon` (`icon`),
    KEY `nav` (`nav`),
    KEY `okayapi_opms_pms_permissions_type` (`okayapi_opms_pms_permissions_type`),
    KEY `weight` (`weight`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'OPMS和OA管理-权限表';

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


MySQL database table structure design

Displaying 1-7 of 7 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
parentidbigint(20)
okayapi_opms_pms_permissions_namevarchar(50)中文名称
enamevarchar(50)英文名称
iconvarchar(20)
navtinyint(1)01是0否导航0
okayapi_opms_pms_permissions_typetinyint(1)00不显示1显示0
weighttinyint(4)00

Guess You Like

MySQL Table Design okayapi_opms_pms_albums

MySQL Table Design okayapi_opms_pms_albums_comment

MySQL Table Design okayapi_opms_pms_albums_laud

MySQL Table Design okayapi_opms_pms_businesstrips

MySQL Table Design okayapi_opms_pms_businesstrips_approver

MySQL Table Design okayapi_opms_pms_checkworks

MySQL Table Design okayapi_opms_pms_departs

MySQL Table Design okayapi_opms_pms_expenses

MySQL Table Design okayapi_opms_pms_expenses_approver

MySQL Table Design okayapi_opms_pms_goouts

MySQL Table Design okayapi_opms_pms_goouts_approver

MySQL Table Design okayapi_opms_pms_groups

MySQL Table Design okayapi_opms_pms_groups_permission

MySQL Table Design okayapi_opms_pms_groups_user

MySQL Table Design okayapi_opms_pms_knowledges

MySQL Table Design okayapi_opms_pms_knowledges_comment

MySQL Table Design okayapi_opms_pms_knowledges_laud

MySQL Table Design okayapi_opms_pms_knowledges_sort

MySQL Table Design okayapi_opms_pms_leaves

MySQL Table Design okayapi_opms_pms_leaves_approver

TOP ↑