Skip to content

Commit af29e1d

Browse files
authored
Merge pull request #69 from recca0120/patch-1
fix test bug when use sqlite database
2 parents eaf7fb7 + 7f50daa commit af29e1d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ public function up()
3232
public function down()
3333
{
3434
Schema::table('users', function (Blueprint $table) {
35-
$table->dropColumn('two_factor_secret');
36-
$table->dropColumn('two_factor_recovery_codes');
35+
$table->dropColumn('two_factor_secret', 'two_factor_recovery_codes');
3736
});
3837
}
3938
}

0 commit comments

Comments
 (0)