Skip to content

Commit 3d3ad9a

Browse files
author
Youri Wijnands
authored
Laravel Pint fixes (#480)
1 parent 07fb77d commit 3d3ad9a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ public function up(): void
1414
{
1515
Schema::table('users', function (Blueprint $table) {
1616
$table->text('two_factor_secret')
17-
->after('password')
18-
->nullable();
17+
->after('password')
18+
->nullable();
1919

2020
$table->text('two_factor_recovery_codes')
21-
->after('two_factor_secret')
22-
->nullable();
21+
->after('two_factor_secret')
22+
->nullable();
2323

2424
if (Fortify::confirmsTwoFactorAuthentication()) {
2525
$table->timestamp('two_factor_confirmed_at')
26-
->after('two_factor_recovery_codes')
27-
->nullable();
26+
->after('two_factor_recovery_codes')
27+
->nullable();
2828
}
2929
});
3030
}

0 commit comments

Comments
 (0)