Ticket #787: 787.diff
File 787.diff, 1.5 KB (added by , 17 years ago) |
---|
-
wp-admin/upgrade-schema.php
44 44 KEY comment_post_ID (comment_post_ID) 45 45 ) $charset_collate; 46 46 CREATE TABLE $wpdb->link2cat ( 47 rel_id bigint(20) NOT NULL auto_increment,48 47 link_id bigint(20) NOT NULL default '0', 49 48 category_id bigint(20) NOT NULL default '0', 50 PRIMARY KEY (rel_id), 51 KEY link_id (link_id,category_id) 49 PRIMARY KEY (link_id, category_id) 52 50 ) $charset_collate; 53 51 CREATE TABLE $wpdb->links ( 54 52 link_id bigint(20) NOT NULL auto_increment, … … 85 83 KEY option_name (option_name) 86 84 ) $charset_collate; 87 85 CREATE TABLE $wpdb->post2cat ( 88 rel_id bigint(20) NOT NULL auto_increment,89 86 post_id bigint(20) NOT NULL default '0', 90 87 category_id bigint(20) NOT NULL default '0', 91 PRIMARY KEY (rel_id), 92 KEY post_id (post_id,category_id) 88 PRIMARY KEY (post_id, category_id) 93 89 ) $charset_collate; 94 90 CREATE TABLE $wpdb->postmeta ( 95 91 meta_id bigint(20) NOT NULL auto_increment, -
wp-includes/version.php
3 3 // This holds the version number in a separate file so we can bump it without cluttering the SVN 4 4 5 5 $wp_version = '2.2-bleeding'; 6 $wp_db_version = 486 0;6 $wp_db_version = 4861; 7 7 8 ?> 8 ?> 9 No newline at end of file