summaryrefslogtreecommitdiff
path: root/db/migrate/20210401175134_add_before_expiry_notification_delivered_to_keys.rb
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