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

field in other tables.


git-svn-id: http://svn.automattic.com/wordpress/trunk@1725 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
donncha 2004-09-30 12:25:49 +00:00
parent 20fc6e6625
commit e531de6f04

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;
}
?>
?>