+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_fl_slide:/tablelist/okayapi_fl_slide.html


-- MySQL Table okayapi_fl_slide
-- From: OkayAPI.com
CREATE TABLE `okayapi_fl_slide` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `title` varchar(150) NOT NULL COMMENT '标题',
    `url` varchar(150) NOT NULL COMMENT '跳转的url',
    `target` smallint(2) NOT NULL DEFAULT '0' COMMENT '跳转方式,0_blank,1_self,2_parent,3_top,4framename',
    `group_id` int(11) NOT NULL DEFAULT '0' COMMENT '分组ID',
    `pic` varchar(150) NOT NULL COMMENT '图片地址',
    `listorder` int(4) NOT NULL DEFAULT '0' COMMENT '排序',
    `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0正常,1禁用',
    KEY `title` (`title`),
    KEY `url` (`url`),
    KEY `target` (`target`),
    KEY `group_id` (`group_id`),
    KEY `pic` (`pic`),
    KEY `listorder` (`listorder`),
    KEY `status` (`status`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CMS建站系统-幻灯/Banner表';

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
titlevarchar(150)标题
urlvarchar(150)跳转的url
targetsmallint(2)0跳转方式,0_blank,1_self,2_parent,3_top,4framename0
group_idint(11)0分组ID0
picvarchar(150)图片地址
listorderint(4)0排序0
statustinyint(1)00正常,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_link

MySQL Table Design okayapi_kite_log

MySQL Table Design okayapi_kite_message

TOP ↑