MySQL Create Table SQL
Table Structure: okayapi_zheng_cms_topic:/tablelist/okayapi_zheng_cms_topic.html
-- MySQL Table okayapi_zheng_cms_topic
-- From: OkayAPI.com
CREATE TABLE `okayapi_zheng_cms_topic` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(100) NULL COMMENT '标题',
`description` varchar(300) NULL COMMENT '描述',
`url` varchar(100) NULL COMMENT '链接',
`ctime` bigint(20) NULL COMMENT '创建时间',
KEY `title` (`title`),
KEY `description` (`description`),
KEY `url` (`url`),
KEY `ctime` (`ctime`),
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-4 of 4 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
title | varchar(100) | 是 | 标题 | |||
description | varchar(300) | 是 | 描述 | |||
url | varchar(100) | 是 | 链接 | |||
ctime | bigint(20) | 是 | 创建时间 |