+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_kite_language:/tablelist/okayapi_kite_language.html


-- MySQL Table okayapi_kite_language
-- From: OkayAPI.com
CREATE TABLE `okayapi_kite_language` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `name` varchar(255) NULL COMMENT '语言名称',
    `icon` varchar(255) NULL COMMENT '',
    `sort` int(11) NULL DEFAULT '0' COMMENT '权重排序 越大越靠后',
    `designation` varchar(255) NULL COMMENT '描述',
    KEY `name` (`name`),
    KEY `icon` (`icon`),
    KEY `sort` (`sort`),
    KEY `designation` (`designation`),
    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-4 of 4 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
namevarchar(255)语言名称
iconvarchar(255)
sortint(11)0权重排序 越大越靠后0
designationvarchar(255)描述

Guess You Like

MySQL Table Design okayapi_kite_addons

MySQL Table Design okayapi_kite_auth_role

MySQL Table Design okayapi_kite_auth_rule

MySQL Table Design okayapi_kite_auth_user

MySQL Table Design okayapi_kite_block

MySQL Table Design okayapi_kite_document_category

MySQL Table Design okayapi_kite_document_comments

MySQL Table Design okayapi_kite_document_comments_like

MySQL Table Design okayapi_kite_document_content

MySQL Table Design okayapi_kite_document_content_extra

MySQL Table Design okayapi_kite_document_content_like

MySQL Table Design okayapi_kite_document_field

MySQL Table Design okayapi_kite_document_model

MySQL Table Design okayapi_kite_document_model_field

MySQL Table Design okayapi_kite_feedback

MySQL Table Design okayapi_kite_hooks

MySQL Table Design okayapi_kite_link

MySQL Table Design okayapi_kite_log

MySQL Table Design okayapi_kite_message

MySQL Table Design okayapi_kite_navigation

TOP ↑