From f28c04f9ab6affee900c2bfe9cbf7fb543f5ce16 Mon Sep 17 00:00:00 2001 From: "Byron Jones ‹:glob›" Date: Fri, 20 Mar 2015 17:27:20 +0000 Subject: Bug 1145502: cf_crash_signature missing in fresh BMO install --- extensions/BMO/Extension.pm | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'extensions/BMO/Extension.pm') 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 { -- cgit v1.2.3-24-g4f1b