MySQL Create Table SQL
Table Structure: okayapi_zheng_cms_page:/tablelist/okayapi_zheng_cms_page.html
-- MySQL Table okayapi_zheng_cms_page
-- From: OkayAPI.com
CREATE TABLE `okayapi_zheng_cms_page` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) NULL COMMENT '父页面',
`title` varchar(20) NULL COMMENT '标题',
`alias` varchar(20) NULL COMMENT '别名',
`content` mediumtext NULL COMMENT '页面内容',
`keywords` varchar(100) NULL COMMENT '关键字',
`description` varchar(300) NULL COMMENT '描述',
`ctime` bigint(20) NULL COMMENT '创建时间',
`orders` bigint(20) NULL COMMENT '排序',
KEY `pid` (`pid`),
KEY `title` (`title`),
KEY `alias` (`alias`),
KEY `content` (`content`),
KEY `keywords` (`keywords`),
KEY `description` (`description`),
KEY `ctime` (`ctime`),
KEY `orders` (`orders`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'zheng敏捷开发-页面';
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 |
---|---|---|---|---|---|---|
pid | int(10) | 是 | 父页面 | |||
title | varchar(20) | 是 | 标题 | |||
alias | varchar(20) | 是 | 别名 | |||
content | mediumtext | 是 | 页面内容 | |||
keywords | varchar(100) | 是 | 关键字 | |||
description | varchar(300) | 是 | 描述 | |||
ctime | bigint(20) | 是 | 创建时间 | |||
orders | bigint(20) | 是 | 排序 |