+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_fie_slide_item:/tablelist/okayapi_fie_slide_item.html


-- MySQL Table okayapi_fie_slide_item
-- From: OkayAPI.com
CREATE TABLE `okayapi_fie_slide_item` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `slide_id` int(11) NULL DEFAULT '0' COMMENT '幻灯片id',
    `okayapi_fie_slide_item_status` tinyint(3) NULL DEFAULT '1' COMMENT '状态,1:显示;0:隐藏',
    `list_order` float NULL DEFAULT '10000' COMMENT '排序',
    `title` varchar(50) NULL COMMENT '幻灯片名称',
    `image` varchar(255) NULL COMMENT '幻灯片图片',
    `url` varchar(255) NULL COMMENT '幻灯片链接',
    `target` varchar(10) NULL COMMENT '友情链接打开方式',
    `description` varchar(255) NULL COMMENT '幻灯片描述',
    `content` text NULL COMMENT '幻灯片内容',
    `more` text NULL COMMENT '链接打开方式',
    KEY `slide_id` (`slide_id`),
    KEY `okayapi_fie_slide_item_status` (`okayapi_fie_slide_item_status`),
    KEY `list_order` (`list_order`),
    KEY `title` (`title`),
    KEY `image` (`image`),
    KEY `url` (`url`),
    KEY `target` (`target`),
    KEY `description` (`description`),
    KEY `content` (`content`),
    KEY `more` (`more`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'fie内容管理-幻灯片子项表';

After replication, you can go to the database to create the database table.


MySQL database table structure design

Displaying 1-10 of 10 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
slide_idint(11)0幻灯片idNormal Index0
okayapi_fie_slide_item_statustinyint(3)1状态,1:显示;0:隐藏1
list_orderfloat10000排序10000
titlevarchar(50)幻灯片名称
imagevarchar(255)幻灯片图片
urlvarchar(255)幻灯片链接
targetvarchar(10)友情链接打开方式
descriptionvarchar(255)幻灯片描述
contenttext幻灯片内容
moretext链接打开方式

Guess You Like

MySQL Table Design okayapi_message

MySQL Table Design okayapi_article

MySQL Table Design okayapi_fie_admin_menu

MySQL Table Design okayapi_fie_asset

MySQL Table Design okayapi_fie_auth_access

MySQL Table Design okayapi_fie_auth_rule

MySQL Table Design okayapi_fie_comment

MySQL Table Design okayapi_fie_hook

MySQL Table Design okayapi_fie_hook_plugin

MySQL Table Design okayapi_fie_link

MySQL Table Design okayapi_fie_nav

MySQL Table Design okayapi_fie_nav_menu

MySQL Table Design okayapi_fie_option

MySQL Table Design okayapi_fie_plugin

MySQL Table Design okayapi_fie_portal_category

MySQL Table Design okayapi_fie_portal_category_post

MySQL Table Design okayapi_fie_portal_post

MySQL Table Design okayapi_fie_portal_tag

MySQL Table Design okayapi_fie_portal_tag_post

MySQL Table Design okayapi_fie_recycle_bin

TOP ↑