MySQL Create Table SQL
Table Structure: okayapi_xwx_category:/tablelist/okayapi_xwx_category.html
-- MySQL Table okayapi_xwx_category
-- From: OkayAPI.com
CREATE TABLE `okayapi_xwx_category` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`cate_name` varchar(50) NULL COMMENT '',
`create_time` int(11) NULL DEFAULT '0' COMMENT '',
`gender` tinyint(4) NULL DEFAULT '1' COMMENT '',
KEY `cate_name` (`cate_name`),
KEY `create_time` (`create_time`),
KEY `gender` (`gender`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'xiaoshuo小说-分类';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-3 of 3 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
cate_name | varchar(50) | 否 | ||||
create_time | int(11) | 0 | 是 | 0 | ||
gender | tinyint(4) | 1 | 是 | 1 |