summaryrefslogtreecommitdiff
path: root/db/migrate/20210201034649_add_active_periods_to_on_call_rotations.rb
blob: 714187f60e09aff0f392c04348e8593ea4930712 (plain)
1
2
3
4
5
6
7
8
9
10
# 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