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

20210401175134_add_before_expiry_notification_delivered_to_keys.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a2ea0e738c5b743b6141173bba3810b1c79898d (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :keys, :before_expiry_notification_delivered_at, :datetime_with_timezone
  end
end