Changed length of ID field in posts table so it matches the post_id

field in other tables.


git-svn-id: https://develop.svn.wordpress.org/trunk@1725 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Donncha O Caoimh 2004-09-30 12:25:49 +00:00
parent c2e6a2fb55
commit af25d70842
1 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ CREATE TABLE $wpdb->postmeta (
KEY meta_key (meta_key)
);
CREATE TABLE $wpdb->posts (
ID int(10) unsigned NOT NULL auto_increment,
ID int(11) unsigned NOT NULL auto_increment,
post_author int(4) NOT NULL default '0',
post_date datetime NOT NULL default '0000-00-00 00:00:00',
post_date_gmt datetime NOT NULL default '0000-00-00 00:00:00',
@ -224,4 +224,4 @@ function populate_options() {
$wpdb->query("UPDATE $wpdb->options SET `autoload` = 'no' WHERE option_name = '$fatoption'");
endforeach;
}
?>
?>