+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_attach:/tablelist/okayapi_attach.html


-- MySQL Table okayapi_attach
-- From: OkayAPI.com
CREATE TABLE `okayapi_attach` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `file_name` varchar(255) NULL COMMENT '附件名称',
    `access_key` varchar(32) NULL COMMENT '批次 Key',
    `file_location` varchar(255) NULL COMMENT '文件位置',
    `file_type` varchar(32) NULL DEFAULT '0' COMMENT '文件类型',
    `item_type` varchar(32) NULL DEFAULT '0' COMMENT '关联类型',
    KEY `file_name` (`file_name`),
    KEY `access_key` (`access_key`),
    KEY `file_location` (`file_location`),
    KEY `file_type` (`file_type`),
    KEY `item_type` (`item_type`),
    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
file_namevarchar(255)附件名称
access_keyvarchar(32)批次 Key
file_locationvarchar(255)文件位置
file_typevarchar(32)0文件类型0
item_typevarchar(32)0关联类型0

Guess You Like

MySQL Table Design okayapi_nav_menu

MySQL Table Design okayapi_category

MySQL Table Design okayapi_feature

TOP ↑