Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20210208200914_add_ends_at_to_oncall_rotations.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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