· 8 years ago · Mar 09, 2018, 02:40 PM
1-- ----------------------------
2-- Table structure for `wp_term_relationships`
3-- ----------------------------
4DROP TABLE IF EXISTS `wp_term_relationships`;
5CREATE TABLE `wp_term_relationships` (
6 `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
7 `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
8 `term_order` int(11) NOT NULL DEFAULT '0',
9 PRIMARY KEY (`object_id`,`term_taxonomy_id`),
10 KEY `term_taxonomy_id` (`term_taxonomy_id`)
11) ENGINE=MyISAM DEFAULT CHARSET=utf8;