summaryrefslogtreecommitdiffstats
path: root/extensions/BMO/Extension.pm
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2015-04-17 05:59:27 +0200
committerByron Jones <glob@mozilla.com>2015-04-17 05:59:27 +0200
commite9bfbbb9c07d902499bb0901a0cd67fe9279bf3b (patch)
tree30bdf49c96b1f3b500d12ed580d987ae90b66644 /extensions/BMO/Extension.pm
parentc4975b6395df29d2472359f4364f04ebbc108008 (diff)
downloadbugzilla-e9bfbbb9c07d902499bb0901a0cd67fe9279bf3b.tar.gz
bugzilla-e9bfbbb9c07d902499bb0901a0cd67fe9279bf3b.tar.xz
Bug 579089: Change default Hardware / OS values to be "Unspecified/Unspecified"
Diffstat (limited to 'extensions/BMO/Extension.pm')
-rw-r--r--extensions/BMO/Extension.pm75
1 files changed, 75 insertions, 0 deletions
diff --git a/extensions/BMO/Extension.pm b/extensions/BMO/Extension.pm
index 5472006ed..f3f5dc6c2 100644
--- a/extensions/BMO/Extension.pm
+++ b/extensions/BMO/Extension.pm
@@ -29,6 +29,7 @@ use Bugzilla::BugMail;
use Bugzilla::Constants;
use Bugzilla::Error;
use Bugzilla::Field;
+use Bugzilla::Field::Choice;
use Bugzilla::Group;
use Bugzilla::Mailer;
use Bugzilla::Product;
@@ -873,9 +874,69 @@ sub install_before_final_checks {
}
}
+sub db_schema_abstract_schema {
+ my ($self, $args) = @_;
+ $args->{schema}->{bug_user_agent} = {
+ FIELDS => [
+ id => {
+ TYPE => 'MEDIUMSERIAL',
+ NOTNULL => 1,
+ PRIMARYKEY => 1,
+ },
+ bug_id => {
+ TYPE => 'INT3',
+ NOTNULL => 1,
+ REFERENCES => {
+ TABLE => 'bugs',
+ COLUMN => 'bug_id',
+ DELETE => 'cascade',
+ },
+ },
+ user_agent => {
+ TYPE => 'MEDIUMTEXT',
+ NOTNULL => 1,
+ },
+ ],
+ INDEXES => [
+ bug_user_agent_idx => {
+ FIELDS => [ 'bug_id' ],
+ TYPE => 'UNIQUE',
+ },
+ ],
+ };
+}
+
sub install_update_db {
my $dbh = Bugzilla->dbh;
+ # per-product hw/os defaults
+ my $op_sys_default = _field_value('op_sys', 'Unspecified', 50);
+ $dbh->bz_add_column(
+ 'products',
+ 'default_op_sys_id' => {
+ TYPE => 'INT2',
+ DEFAULT => $op_sys_default->id,
+ REFERENCES => {
+ TABLE => 'op_sys',
+ COLUMN => 'id',
+ DELETE => 'SET NULL',
+ },
+ }
+ );
+ my $platform_default = _field_value('rep_platform', 'Unspecified', 50);
+ $dbh->bz_add_column(
+ 'products',
+ 'default_platform_id' => {
+ TYPE => 'INT2',
+ DEFAULT => $platform_default->id,
+ REFERENCES => {
+ TABLE => 'rep_platform',
+ COLUMN => 'id',
+ DELETE => 'SET NULL',
+ },
+ }
+ );
+
# Migrate old is_active stuff to new patch (is in core in 4.2), The old
# column name was 'is_active', the new one is 'isactive' (no underscore).
if ($dbh->bz_column_info('milestones', 'is_active')) {
@@ -914,6 +975,20 @@ sub install_update_db {
}
}
+# return the Bugzilla::Field::Choice object for the specified field and value.
+# if the value doesn't exist it will be created.
+sub _field_value {
+ my ($field_name, $value_name, $sort_key) = @_;
+ my $field = Bugzilla::Field->check({ name => $field_name });
+ my $existing = Bugzilla::Field::Choice->type($field)->match({ value => $value_name });
+ return $existing->[0] if $existing && @$existing;
+ return Bugzilla::Field::Choice->type($field)->create({
+ value => $value_name,
+ sortkey => $sort_key,
+ isactive => 1,
+ });
+}
+
sub _last_closed_date {
my ($self) = @_;
my $dbh = Bugzilla->dbh;