+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_f_base_module:/tablelist/okayapi_f_base_module.html


-- MySQL Table okayapi_f_base_module
-- From: OkayAPI.com
CREATE TABLE `okayapi_f_base_module` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `class_name` varchar(256) NULL COMMENT '',
    `description` varchar(256) NULL COMMENT '',
    `okayapi_f_base_module_name` varchar(64) NULL COMMENT '',
    `priority` int(11) NULL COMMENT '',
    `sn` varchar(32) NULL COMMENT '',
    `url` varchar(256) NULL COMMENT '',
    `parent_id` bigint(20) NULL COMMENT '',
    KEY `class_name` (`class_name`),
    KEY `description` (`description`),
    KEY `okayapi_f_base_module_name` (`okayapi_f_base_module_name`),
    KEY `priority` (`priority`),
    KEY `sn` (`sn`),
    KEY `url` (`url`),
    KEY `parent_id` (`parent_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-7 of 7 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
class_namevarchar(256)
descriptionvarchar(256)
okayapi_f_base_module_namevarchar(64)
priorityint(11)
snvarchar(32)Unique Index
urlvarchar(256)
parent_idbigint(20)Normal Index

Guess You Like

MySQL Table Design okayapi_f_base_component_resource

MySQL Table Design okayapi_f_base_data_control

MySQL Table Design okayapi_f_base_dictionary

MySQL Table Design okayapi_f_base_log_info

MySQL Table Design okayapi_f_base_organization

MySQL Table Design okayapi_f_base_organization_role

MySQL Table Design okayapi_f_base_permission

MySQL Table Design okayapi_f_base_role

MySQL Table Design okayapi_f_base_role_permission

MySQL Table Design okayapi_f_base_role_permission_data_control

MySQL Table Design okayapi_f_base_user

MySQL Table Design okayapi_f_base_user_role

MySQL Table Design okayapi_f_sample_product

MySQL Table Design okayapi_f_sample_task

MySQL Table Design okayapi_moneymanager_billforin

MySQL Table Design okayapi_moneymanager_billforout

MySQL Table Design okayapi_moneymanager_menu

MySQL Table Design okayapi_moneymanager_message

MySQL Table Design okayapi_moneymanager_page

MySQL Table Design okayapi_moneymanager_permission

TOP ↑