Changeset 4832 for trunk/wp-admin/upgrade-schema.php
- Timestamp:
- 01/30/2007 01:46:05 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/upgrade-schema.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/upgrade-schema.php
r4831 r4832 120 120 KEY post_name (post_name), 121 121 KEY type_status_date (post_type,post_status,post_date,ID) 122 );123 CREATE TABLE $wpdb->tags (124 tag_id bigint(20) unsigned NOT NULL auto_increment,125 tag varchar(30) NOT NULL default '',126 raw_tag varchar(50) NOT NULL default '',127 tag_count bigint(20) unsigned NOT NULL default '0',128 PRIMARY KEY (tag_id)129 );130 CREATE TABLE $wpdb->tagged (131 tag_id bigint(20) unsigned NOT NULL default '0',132 post_id bigint(20) unsigned NOT NULL default '0',133 PRIMARY KEY (tag_id,post_id),134 KEY tag_id_index (tag_id),135 KEY post_id_index (post_id)136 122 ); 137 123 CREATE TABLE $wpdb->users (
Note: See TracChangeset
for help on using the changeset viewer.