gitlab-org--gitlab-foss/db/migrate/20210208200914_add_ends_at_...

10 lines
226 B
Ruby

# 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