+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_kite_link:/tablelist/okayapi_kite_link.html


-- MySQL Table okayapi_kite_link
-- From: OkayAPI.com
CREATE TABLE `okayapi_kite_link` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `cid` int(11) NOT NULL DEFAULT '0' COMMENT '友情链接分类ID',
    `site_id` char(64) NOT NULL COMMENT '网站编号',
    `name` varchar(64) NOT NULL COMMENT '网站名称',
    `url` varchar(64) NOT NULL COMMENT '网站地址',
    `logo` varchar(255) NOT NULL COMMENT 'logo地址',
    `sort` int(11) NOT NULL DEFAULT '0' COMMENT '排序',
    `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态: 0隐藏  1 显示',
    KEY `cid` (`cid`),
    KEY `site_id` (`site_id`),
    KEY `name` (`name`),
    KEY `url` (`url`),
    KEY `logo` (`logo`),
    KEY `sort` (`sort`),
    KEY `status` (`status`),
    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
cidint(11)0友情链接分类ID0
site_idchar(64)网站编号
namevarchar(64)网站名称
urlvarchar(64)网站地址
logovarchar(255)logo地址
sortint(11)0排序0
statustinyint(1)0状态: 0隐藏 1 显示0

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_language

MySQL Table Design okayapi_kite_log

MySQL Table Design okayapi_kite_message

MySQL Table Design okayapi_kite_navigation

TOP ↑