mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 18:19:52 +01:00
11 lines
276 B
Ruby
11 lines
276 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateTotpRecoveryCodes < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :totp_recovery_codes do |t|
|
|
t.bigint :user_id
|
|
t.string :code, limit: 8
|
|
end
|
|
add_index :totp_recovery_codes, %i[user_id code]
|
|
end
|
|
end
|