From: Frédéric Buclin Date: Thu, 30 Jul 2015 15:02:08 +0000 (+0200) Subject: Bug 1188980: PostgreSQL crashes when running checksetup.pl due to too long cookies... X-Git-Tag: release-5.1.1~211 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8425656aa295086e257dd5cd673843ed238f57cd;p=thirdparty%2Fbugzilla.git Bug 1188980: PostgreSQL crashes when running checksetup.pl due to too long cookies in the logincookies table r=gerv a=dkl --- diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm index 26f68aab05..d317ee5947 100644 --- a/Bugzilla/Install/DB.pm +++ b/Bugzilla/Install/DB.pm @@ -436,12 +436,8 @@ sub update_table_definitions { $dbh->bz_alter_column('groups', 'userregexp', {TYPE => 'TINYTEXT', NOTNULL => 1, DEFAULT => "''"}); - # 2005-09-26 - olav@bkor.dhs.org - Bug 119524 - $dbh->bz_alter_column('logincookies', 'cookie', - {TYPE => 'varchar(16)', PRIMARYKEY => 1, NOTNULL => 1}); - _clean_control_characters_from_short_desc(); - + # 2005-12-07 altlst@sonic.net -- Bug 225221 $dbh->bz_add_column('longdescs', 'comment_id', {TYPE => 'INTSERIAL', NOTNULL => 1, PRIMARYKEY => 1});