+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_bi_role:/tablelist/okayapi_bi_role.html


-- MySQL Table okayapi_bi_role
-- From: OkayAPI.com
CREATE TABLE `okayapi_bi_role` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `rolemap` varchar(255) NULL COMMENT '',
    `orgi` varchar(32) NULL COMMENT '',
    `updatetime` timestamp NULL COMMENT '',
    `createtime` timestamp NULL COMMENT '',
    `creater` varchar(32) NULL COMMENT '',
    `description` varchar(32) NULL COMMENT '',
    `name` varchar(255) NULL COMMENT '',
    `groupid` varchar(255) NULL COMMENT '',
    `userid` varchar(255) NULL COMMENT '',
    KEY `rolemap` (`rolemap`),
    KEY `orgi` (`orgi`),
    KEY `updatetime` (`updatetime`),
    KEY `createtime` (`createtime`),
    KEY `creater` (`creater`),
    KEY `description` (`description`),
    KEY `name` (`name`),
    KEY `groupid` (`groupid`),
    KEY `userid` (`userid`),
    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-9 of 9 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
rolemapvarchar(255)
orgivarchar(32)
updatetimetimestamp
createtimetimestamp
creatervarchar(32)
descriptionvarchar(32)
namevarchar(255)
groupidvarchar(255)
useridvarchar(255)

Guess You Like

MySQL Table Design okayapi_bi_crm_contacts

MySQL Table Design okayapi_bi_account

MySQL Table Design okayapi_bi_analyzereport

MySQL Table Design okayapi_bi_auth

MySQL Table Design okayapi_bi_blacklist

MySQL Table Design okayapi_bi_category

MySQL Table Design okayapi_bi_datasource

MySQL Table Design okayapi_bi_datatable

MySQL Table Design okayapi_bi_log_report

MySQL Table Design okayapi_bi_log_request

MySQL Table Design okayapi_bi_metadata

MySQL Table Design okayapi_bi_project

MySQL Table Design okayapi_bi_role_group

MySQL Table Design okayapi_pinot_generic_json_entity

MySQL Table Design okayapi_pinot_anomaly_function_index

MySQL Table Design okayapi_pinot_job_index

MySQL Table Design okayapi_pinot_task_index

MySQL Table Design okayapi_pinot_raw_anomaly_result_index

MySQL Table Design okayapi_pinot_merged_anomaly_result_index

MySQL Table Design okayapi_pinot_dataset_config_index

TOP ↑