MySQL Create Table SQL
Table Structure: okayapi_xwx_friendship_link:/tablelist/okayapi_xwx_friendship_link.html
-- MySQL Table okayapi_xwx_friendship_link
-- From: OkayAPI.com
CREATE TABLE `okayapi_xwx_friendship_link` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`okayapi_xwx_friendship_link_name` varchar(100) NULL COMMENT '',
`url` varchar(255) NULL COMMENT '',
`create_time` int(11) NULL DEFAULT '0' COMMENT '',
KEY `okayapi_xwx_friendship_link_name` (`okayapi_xwx_friendship_link_name`),
KEY `url` (`url`),
KEY `create_time` (`create_time`),
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 |
---|---|---|---|---|---|---|
okayapi_xwx_friendship_link_name | varchar(100) | 否 | ||||
url | varchar(255) | 否 | ||||
create_time | int(11) | 0 | 是 | 0 |