MySQL Create Table SQL
Table Structure: okayapi_eduwind_ew_page:/tablelist/okayapi_eduwind_ew_page.html
-- MySQL Table okayapi_eduwind_ew_page
-- From: OkayAPI.com
CREATE TABLE `okayapi_eduwind_ew_page` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`userId` int(11) NOT NULL COMMENT '创建人id',
`addTime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`title` char(255) NOT NULL COMMENT '标题',
`content` text NOT NULL COMMENT '',
`weight` int(11) NOT NULL DEFAULT '0' COMMENT '排序',
`published` tinyint(10) NOT NULL DEFAULT '0' COMMENT '',
`okayapi_eduwind_ew_page_key` char(255) NOT NULL COMMENT '',
`categoryId` int(11) NOT NULL DEFAULT '0' COMMENT '',
KEY `userId` (`userId`),
KEY `addTime` (`addTime`),
KEY `title` (`title`),
KEY `content` (`content`),
KEY `weight` (`weight`),
KEY `published` (`published`),
KEY `okayapi_eduwind_ew_page_key` (`okayapi_eduwind_ew_page_key`),
KEY `categoryId` (`categoryId`),
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-8 of 8 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
userId | int(11) | 否 | 创建人id | Normal Index | ||
addTime | int(11) | 0 | 否 | 创建时间 | 0 | |
title | char(255) | 否 | 标题 | |||
content | text | 否 | ||||
weight | int(11) | 0 | 否 | 排序 | 0 | |
published | tinyint(10) | 0 | 否 | 0 | ||
okayapi_eduwind_ew_page_key | char(255) | 否 | ||||
categoryId | int(11) | 0 | 否 | 0 |