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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2015-05-09 21:52:46 +0300
committerRobert Speicher <rspeicher@gmail.com>2015-05-10 00:32:46 +0300
commit0c113c8dcb02e02457473823847b41df4eeedb88 (patch)
treee3a9d8e18981b8b72b09d48f44b1983e4d4704d1 /db/schema.rb
parent2ad1334d9e0e143eb1cd1694433bfdf29314a65e (diff)
Make otp_backup_codes a text field
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 04abf9bb9a6..3e5810d7408 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -492,6 +492,11 @@ ActiveRecord::Schema.define(version: 20150502064022) do
t.string "bitbucket_access_token"
t.string "bitbucket_access_token_secret"
t.string "location"
+ t.string "encrypted_otp_secret"
+ t.string "encrypted_otp_secret_iv"
+ t.string "encrypted_otp_secret_salt"
+ t.boolean "otp_required_for_login"
+ t.text "otp_backup_codes"
t.string "public_email", default: "", null: false
end