+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_eduwind_ew_nav:/tablelist/okayapi_eduwind_ew_nav.html


-- MySQL Table okayapi_eduwind_ew_nav
-- From: OkayAPI.com
CREATE TABLE `okayapi_eduwind_ew_nav` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `title` char(32) NULL COMMENT '',
    `activeRule` char(255) NULL COMMENT '',
    `weight` int(11) NULL DEFAULT '0' COMMENT '',
    `url` char(255) NULL COMMENT '',
    `location` char(32) NULL DEFAULT 'top' COMMENT '',
    `displayRule` varchar(45) NULL DEFAULT 'return true;' COMMENT '',
    KEY `title` (`title`),
    KEY `activeRule` (`activeRule`),
    KEY `weight` (`weight`),
    KEY `url` (`url`),
    KEY `location` (`location`),
    KEY `displayRule` (`displayRule`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'EW在线教育-导航';

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


MySQL database table structure design

Displaying 1-6 of 6 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
titlechar(32)
activeRulechar(255)
weightint(11)00
urlchar(255)
locationchar(32)toptop
displayRulevarchar(45)return true;return true;

Guess You Like

MySQL Table Design okayapi_course_apply

MySQL Table Design okayapi_studyabc_articles

MySQL Table Design okayapi_studyabc_articles_content

MySQL Table Design okayapi_studyabc_cet

MySQL Table Design okayapi_studyabc_cetdesc

MySQL Table Design okayapi_studyabc_tinyenglish

MySQL Table Design okayapi_eduwind_AuthAssignment

MySQL Table Design okayapi_eduwind_AuthItem

MySQL Table Design okayapi_eduwind_AuthItemChild

MySQL Table Design okayapi_eduwind_Rights

MySQL Table Design okayapi_eduwind_YiiSession

MySQL Table Design okayapi_eduwind_ew_announcement

MySQL Table Design okayapi_eduwind_ew_answer

MySQL Table Design okayapi_eduwind_ew_area

MySQL Table Design okayapi_eduwind_ew_article

MySQL Table Design okayapi_eduwind_ew_bottom_text

MySQL Table Design okayapi_eduwind_ew_carousel

MySQL Table Design okayapi_eduwind_ew_category

MySQL Table Design okayapi_eduwind_ew_chapter

MySQL Table Design okayapi_eduwind_ew_city

TOP ↑