summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorByron Jones ‹:glob› <glob@mozilla.com>2015-03-20 18:27:20 +0100
committerDavid Lawrence <dkl@mozilla.com>2015-03-20 18:27:20 +0100
commitf28c04f9ab6affee900c2bfe9cbf7fb543f5ce16 (patch)
tree64886d4b3553cf8dc33b0a7810f8ad855a7018d1 /extensions
parent8f3716aa76323ad74cf7a63a27d034ab7876e899 (diff)
downloadbugzilla-f28c04f9ab6affee900c2bfe9cbf7fb543f5ce16.tar.gz
bugzilla-f28c04f9ab6affee900c2bfe9cbf7fb543f5ce16.tar.xz
Bug 1145502: cf_crash_signature missing in fresh BMO install
Diffstat (limited to 'extensions')
-rw-r--r--extensions/BMO/Extension.pm12
1 files changed, 12 insertions, 0 deletions
diff --git a/extensions/BMO/Extension.pm b/extensions/BMO/Extension.pm
index 6bd8bacda..03adcac33 100644
--- a/extensions/BMO/Extension.pm
+++ b/extensions/BMO/Extension.pm
@@ -857,6 +857,18 @@ sub install_update_db {
buglist => 1,
});
}
+ unless (Bugzilla::Field->new({ name => 'cf_crash_signature' })) {
+ Bugzilla::Field->create({
+ name => 'cf_crash_signature',
+ description => 'Crash Signature',
+ type => FIELD_TYPE_TEXTAREA,
+ mailhead => 0,
+ enter_bug => 1,
+ obsolete => 0,
+ custom => 1,
+ buglist => 0,
+ });
+ }
}
sub _last_closed_date {