diff --git a/src/wp-admin/includes/schema.php b/src/wp-admin/includes/schema.php
index 374e9d4..871cb0a 100644
a
|
b
|
|
82 | 82 | KEY taxonomy (taxonomy) |
83 | 83 | ) $charset_collate; |
84 | 84 | CREATE TABLE $wpdb->term_relationships ( |
| 85 | term_relationship_id bigint(20) unsigned NOT NULL auto_increment, |
85 | 86 | object_id bigint(20) unsigned NOT NULL default 0, |
86 | 87 | term_taxonomy_id bigint(20) unsigned NOT NULL default 0, |
87 | 88 | term_order int(11) NOT NULL default 0, |
88 | | PRIMARY KEY (object_id,term_taxonomy_id), |
| 89 | PRIMARY KEY (term_relationship_id), |
| 90 | UNIQUE KEY object_id (object_id,term_taxonomy_id), |
89 | 91 | KEY term_taxonomy_id (term_taxonomy_id) |
90 | 92 | ) $charset_collate; |
91 | 93 | CREATE TABLE $wpdb->commentmeta ( |