Changeset 3570 for trunk/wp-admin/upgrade-schema.php
- Timestamp:
- 02/27/2006 04:57:30 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/upgrade-schema.php
r3548 r3570 9 9 category_parent bigint(20) NOT NULL default '0', 10 10 category_count bigint(20) NOT NULL default '0', 11 link_count bigint(20) NOT NULL default '0', 12 posts_private tinyint(1) NOT NULL default '0', 13 links_private tinyint(1) NOT NULL default '0', 11 14 PRIMARY KEY (cat_ID), 12 15 KEY category_nicename (category_nicename) … … 31 34 KEY comment_approved (comment_approved), 32 35 KEY comment_post_ID (comment_post_ID) 36 ); 37 CREATE TABLE $wpdb->link2cat ( 38 rel_id bigint(20) NOT NULL auto_increment, 39 link_id bigint(20) NOT NULL default '0', 40 category_id bigint(20) NOT NULL default '0', 41 PRIMARY KEY (rel_id), 42 KEY link_id (link_id,category_id) 33 43 ); 34 44 CREATE TABLE $wpdb->linkcategories ( … … 232 242 // 2.1 233 243 add_option('blog_public', 1); 244 add_option('default_link_category', 2); 234 245 235 246 // Delete unused options
Note: See TracChangeset
for help on using the changeset viewer.