+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_sys_authitemchild:/tablelist/okayapi_sys_authitemchild.html


-- MySQL Table okayapi_sys_authitemchild
-- From: OkayAPI.com
CREATE TABLE `okayapi_sys_authitemchild` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `parent` varchar(64) NOT NULL COMMENT '权限管理表',
    `child` varchar(64) NOT NULL COMMENT '',
    KEY `parent` (`parent`),
    KEY `child` (`child`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CRM-权限_认证项父子关系';

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
parentvarchar(64)权限管理表
childvarchar(64)

Guess You Like

MySQL Table Design okayapi_crm_accountrecordss

MySQL Table Design okayapi_crm_announcements

MySQL Table Design okayapi_crm_caigoutuihuos

MySQL Table Design okayapi_crm_campaigns

MySQL Table Design okayapi_crm_charges

MySQL Table Design okayapi_crm_chargesrecords

MySQL Table Design okayapi_crm_checks

MySQL Table Design okayapi_crm_competitor

MySQL Table Design okayapi_crm_complaints

MySQL Table Design okayapi_crm_contacter

MySQL Table Design okayapi_crm_contactlog

MySQL Table Design okayapi_crm_customer

MySQL Table Design okayapi_crm_dailylogs

MySQL Table Design okayapi_crm_deliverys

MySQL Table Design okayapi_crm_emailgroup

MySQL Table Design okayapi_crm_emailgroupinfo

MySQL Table Design okayapi_crm_expenses

MySQL Table Design okayapi_crm_faq

MySQL Table Design okayapi_crm_faqcategory

MySQL Table Design okayapi_crm_gathers

TOP ↑