summaryrefslogtreecommitdiff
path: root/db/migrate/20210208200914_add_ends_at_to_oncall_rotations.rb
blob: 5cd179c9a801eec6cd21f917cf0e70f1e5894ca2 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddEndsAtToOncallRotations < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :incident_management_oncall_rotations, :ends_at, :datetime_with_timezone
  end
end