diff options
author | Gabriel Mazetto <gabriel@gitlab.com> | 2015-12-18 18:29:13 -0200 |
---|---|---|
committer | Gabriel Mazetto <gabriel@gitlab.com> | 2015-12-24 19:00:18 -0200 |
commit | 33964469b38e2b36b200b20fe3061371a5f5ab18 (patch) | |
tree | 72a4eaae98645d02803cd212d871dd22d9fca53d /db/schema.rb | |
parent | 7b25da74ea017814c3f420bd57470af483617d4f (diff) | |
download | gitlab-ce-33964469b38e2b36b200b20fe3061371a5f5ab18.tar.gz |
WIP require two factor authentication
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb index 0d53105b057..631979a7fd8 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -50,6 +50,8 @@ ActiveRecord::Schema.define(version: 20151224123230) do t.boolean "shared_runners_enabled", default: true, null: false t.integer "max_artifacts_size", default: 100, null: false t.string "runners_registration_token" + t.boolean "require_two_factor_authentication", default: false + t.integer "two_factor_grace_period", default: 48 end create_table "audit_events", force: :cascade do |t| |