scinote-web/db/migrate/20200709142830_add_otp_recovery_codes_to_users.rb
2020-07-09 17:01:00 +02:00

10 lines
203 B
Ruby

# frozen_string_literal: true
class AddOtpRecoveryCodesToUsers < ActiveRecord::Migration[6.0]
def change
change_table :users, bulk: true do |t|
t.jsonb :otp_recovery_codes
end
end
end