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

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

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