MySQL Create Table SQL
Table Structure: okayapi_fl_taglist:/tablelist/okayapi_fl_taglist.html
-- MySQL Table okayapi_fl_taglist
-- From: OkayAPI.com
CREATE TABLE `okayapi_fl_taglist` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`tag_id` int(11) NOT NULL DEFAULT '0' COMMENT 'TAG ID',
`article_id` int(11) NOT NULL DEFAULT '0' COMMENT '文章ID',
KEY `tag_id` (`tag_id`),
KEY `article_id` (`article_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CMS建站系统-标签-文章关系表';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-2 of 2 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
tag_id | int(11) | 0 | 否 | TAG ID | 0 | |
article_id | int(11) | 0 | 否 | 文章ID | 0 |