+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_f_base_component_resource:/tablelist/okayapi_f_base_component_resource.html


-- MySQL Table okayapi_f_base_component_resource
-- From: OkayAPI.com
CREATE TABLE `okayapi_f_base_component_resource` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `okayapi_f_base_component_resource_file` longblob NULL COMMENT '',
    `okayapi_f_base_component_resource_name` varchar(128) NULL COMMENT '',
    `size` varchar(32) NULL COMMENT '',
    `store_type` varchar(16) NULL COMMENT '',
    `upload_time` datetime NULL COMMENT '',
    KEY `okayapi_f_base_component_resource_file` (`okayapi_f_base_component_resource_file`),
    KEY `okayapi_f_base_component_resource_name` (`okayapi_f_base_component_resource_name`),
    KEY `size` (`size`),
    KEY `store_type` (`store_type`),
    KEY `upload_time` (`upload_time`),
    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-5 of 5 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
okayapi_f_base_component_resource_filelongblob
okayapi_f_base_component_resource_namevarchar(128)
sizevarchar(32)
store_typevarchar(16)
upload_timedatetime

Guess You Like

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_module

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 ↑