adding to user migration

This commit is contained in:
Brian 2022-04-05 11:05:42 -06:00
parent 071e72785a
commit d49f0c95c3
Signed by: brian
GPG Key ID: DE1A5390A3B84CD8

View File

@ -25,6 +25,7 @@ class CreateUsersTable extends Migration
$table->string('password');
$table->text('two_factor_secret')->nullable();
$table->text('two_factor_recovery_codes')->nullable();
$table->timestamp('two_factor_confirmed_at')->nullable();
$table->rememberToken();
$table->timestamp('created_at')->useCurrent();
$table->timestamp('updated_at')->nullable()->useCurrentOnUpdate();