Make WordPress Core


Ignore:
Timestamp:
06/12/2005 07:05:07 AM (19 years ago)
Author:
matt
Message:

Planning waaay ahead, all INTs should match.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/upgrade-schema.php

    r2581 r2629  
    77  category_nicename varchar(200) NOT NULL default '',
    88  category_description longtext NOT NULL,
    9   category_parent int(4) NOT NULL default '0',
     9  category_parent bigint(20) NOT NULL default '0',
    1010  PRIMARY KEY  (cat_ID),
    1111  KEY category_nicename (category_nicename)
     
    2525  comment_agent varchar(255) NOT NULL default '',
    2626  comment_type varchar(20) NOT NULL default '',
    27   comment_parent int(11) NOT NULL default '0',
    28   user_id int(11) NOT NULL default '0',
     27  comment_parent bigint(20) NOT NULL default '0',
     28  user_id bigint(20) NOT NULL default '0',
    2929  PRIMARY KEY  (comment_ID),
    3030  KEY comment_approved (comment_approved),
     
    9999CREATE TABLE $wpdb->posts (
    100100  ID bigint(20) unsigned NOT NULL auto_increment,
    101   post_author int(4) NOT NULL default '0',
     101  post_author bigint(20) NOT NULL default '0',
    102102  post_date datetime NOT NULL default '0000-00-00 00:00:00',
    103103  post_date_gmt datetime NOT NULL default '0000-00-00 00:00:00',
     
    116116  post_modified_gmt datetime NOT NULL default '0000-00-00 00:00:00',
    117117  post_content_filtered text NOT NULL,
    118   post_parent int(11) NOT NULL default '0',
     118  post_parent bigint(20) NOT NULL default '0',
    119119  guid varchar(255) NOT NULL default '',
    120120  menu_order int(11) NOT NULL default '0',
Note: See TracChangeset for help on using the changeset viewer.