debian-mirror-gitlab/db/migrate/20210201034649_add_active_periods_to_on_call_rotations.rb
2021-04-17 20:07:23 +05:30

11 lines
331 B
Ruby

# frozen_string_literal: true
class AddActivePeriodsToOnCallRotations < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :incident_management_oncall_rotations, :active_period_start, :time, null: true
add_column :incident_management_oncall_rotations, :active_period_end, :time, null: true
end
end