mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-04-16 13:38:27 +02:00
Fix migration not being supported by sqlite
This commit is contained in:
parent
55192fe89f
commit
53eef9e018
@ -28,6 +28,9 @@ public function down(): void
|
|||||||
{
|
{
|
||||||
Schema::table('users', function (Blueprint $table) {
|
Schema::table('users', function (Blueprint $table) {
|
||||||
$table->dropColumn('oauth_id');
|
$table->dropColumn('oauth_id');
|
||||||
|
});
|
||||||
|
|
||||||
|
Schema::table('users', function (Blueprint $table) {
|
||||||
$table->dropColumn('oauth_provider');
|
$table->dropColumn('oauth_provider');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user