MySQL Create Table SQL
Table Structure: okayapi_wp_term_relationships:/tablelist/okayapi_wp_term_relationships.html
-- MySQL Table okayapi_wp_term_relationships
-- From: OkayAPI.com
CREATE TABLE `okayapi_wp_term_relationships` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`object_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '',
`term_taxonomy_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '',
`term_order` int(11) NOT NULL DEFAULT '0' COMMENT '',
KEY `object_id` (`object_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`),
KEY `term_order` (`term_order`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'WordPress-条款关系';
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 |
---|---|---|---|---|---|---|
object_id | bigint(20) | 0 | 否 | 0 | ||
term_taxonomy_id | bigint(20) | 0 | 否 | 0 | ||
term_order | int(11) | 0 | 否 | 0 |