add bypass_email_login_token to instructeur

This commit is contained in:
simon lehericey 2021-04-09 15:14:46 +02:00
parent 2fc0ceb884
commit cd6cb99c3c
3 changed files with 14 additions and 6 deletions

View file

@ -0,0 +1,6 @@
class AddBypassEmailLoginTokenColumnToInstructeur < ActiveRecord::Migration[6.1]
def change
# This may take a while if running on Postgres < 11
add_column :instructeurs, :bypass_email_login_token, :boolean, default: false, null: false
end
end