summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install/DB.pm
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-07-31 17:45:47 +0200
committerDave Lawrence <dlawrence@mozilla.com>2012-07-31 17:45:47 +0200
commit8ca1cd544e523ae432554717423ac2f4c66f17c6 (patch)
tree50d71a2f8472a853392956b31528f78859bc317d /Bugzilla/Install/DB.pm
parent13baf25cc7c01779bb50931f22d52ac6ad1504d0 (diff)
downloadbugzilla-8ca1cd544e523ae432554717423ac2f4c66f17c6.tar.gz
bugzilla-8ca1cd544e523ae432554717423ac2f4c66f17c6.tar.xz
Bug 776982 - Increase longdescs primary key size to INTSERIAL for future growth
r/a=LpSolit
Diffstat (limited to 'Bugzilla/Install/DB.pm')
-rw-r--r--Bugzilla/Install/DB.pm22
1 files changed, 10 insertions, 12 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm
index 6a8dbc64a..5d21d2211 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -454,8 +454,8 @@ sub update_table_definitions {
_clean_control_characters_from_short_desc();
# 2005-12-07 altlst@sonic.net -- Bug 225221
- # 2012-07-24 dkl@mozilla.com - Bug 776982
- _fix_longdescs_primary_key();
+ $dbh->bz_add_column('longdescs', 'comment_id',
+ {TYPE => 'INTSERIAL', NOTNULL => 1, PRIMARYKEY => 1});
_stop_storing_inactive_flags();
_change_short_desc_from_mediumtext_to_varchar();
@@ -607,7 +607,7 @@ sub update_table_definitions {
_fix_series_creator_fk();
# 2009-11-14 dkl@redhat.com - Bug 310450
- $dbh->bz_add_column('bugs_activity', 'comment_id', {TYPE => 'INT3'});
+ $dbh->bz_add_column('bugs_activity', 'comment_id', {TYPE => 'INT4'});
# 2010-04-07 LpSolit@gmail.com - Bug 69621
$dbh->bz_drop_column('bugs', 'keywords');
@@ -687,6 +687,9 @@ sub update_table_definitions {
{TYPE => 'INTSERIAL', NOTNULL => 1, PRIMARYKEY => 1});
+ # 2012-07-24 dkl@mozilla.com - Bug 776982
+ _fix_longdescs_primary_key();
+
################################################################
# New --TABLE-- changes should go *** A B O V E *** this point #
################################################################
@@ -3715,16 +3718,11 @@ sub _fix_notnull_defaults {
sub _fix_longdescs_primary_key {
my $dbh = Bugzilla->dbh;
- my $column_def = {TYPE => 'INTSERIAL', NOTNULL => 1, PRIMARYKEY => 1};
- if (!$dbh->bz_column_info('longdescs', 'comment_id')) {
- $dbh->bz_add_column('longdescs', 'comment_id', $column_def);
- }
- elsif ($dbh->bz_column_info('longdescs', 'comment_id')->{TYPE} ne 'INTSERIAL') {
- $dbh->bz_drop_fk('bugs_activity', 'comment_id');
+ if ($dbh->bz_column_info('longdescs', 'comment_id')->{TYPE} ne 'INTSERIAL') {
+ $dbh->bz_drop_related_fks('longdescs', 'comment_id');
$dbh->bz_alter_column('bugs_activity', 'comment_id', {TYPE => 'INT4'});
- $dbh->bz_alter_column('longdescs', 'comment_id', $column_def);
- $dbh->bz_add_fk('bugs_activity', 'comment_id',
- {TABLE => 'longdescs', COLUMN => 'comment_id', DELETE => 'CASCADE'});
+ $dbh->bz_alter_column('longdescs', 'comment_id',
+ {TYPE => 'INTSERIAL', NOTNULL => 1, PRIMARYKEY => 1});
}
}