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

20151221234414_add_tfa_additional_fields.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3e4aaa606a8f55b28ed67ae1c04006253e1d102 (plain)
1
2
3
4
5
6
7
8
# rubocop:disable all
class AddTfaAdditionalFields < ActiveRecord::Migration
  def change
    change_table :users do |t|
      t.datetime :otp_grace_period_started_at, null: true
    end
  end
end