+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_f_sample_task:/tablelist/okayapi_f_sample_task.html


-- MySQL Table okayapi_f_sample_task
-- From: OkayAPI.com
CREATE TABLE `okayapi_f_sample_task` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `title` varchar(64) NULL COMMENT '标题',
    `content` varchar(256) NULL COMMENT '内容',
    `okayapi_f_sample_task_level` varchar(64) NULL COMMENT '等级',
    `user_id` bigint(20) NULL COMMENT '创建人',
    `create_time` datetime NULL COMMENT '创建时间',
    KEY `title` (`title`),
    KEY `content` (`content`),
    KEY `okayapi_f_sample_task_level` (`okayapi_f_sample_task_level`),
    KEY `user_id` (`user_id`),
    KEY `create_time` (`create_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
titlevarchar(64)标题
contentvarchar(256)内容
okayapi_f_sample_task_levelvarchar(64)等级
user_idbigint(20)创建人Normal Index
create_timedatetime创建时间

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_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_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 ↑