Skip to content

Add sla columns to project incident settings table

Sean Arnold requested to merge 241663-add-incident-sla-settings-backend into master

What does this MR do?

Migration UP/DOWN:

up
rake db:migrate:up VERSION=20200929032729
== 20200929032729 AddSlaMinutesToProjectIncidentManagementSettings: migrating =
-- add_column(:project_incident_management_settings, :sla_timer, :boolean, {:default=>false})
   -> 0.0024s
-- add_column(:project_incident_management_settings, :sla_timer_minutes, :integer)
   -> 0.0003s
== 20200929032729 AddSlaMinutesToProjectIncidentManagementSettings: migrated (0.0028s)
down
rake db:migrate:down VERSION=20200929032729
== 20200929032729 AddSlaMinutesToProjectIncidentManagementSettings: reverting =
-- remove_column(:project_incident_management_settings, :sla_timer)
   -> 0.0022s
-- remove_column(:project_incident_management_settings, :sla_timer_minutes)
   -> 0.0009s
== 20200929032729 AddSlaMinutesToProjectIncidentManagementSettings: reverted (0.0032s)

Screenshots

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team

Closes #241663 (closed)

Edited by Sean Arnold

Merge request reports