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

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