Fix migration not being supported by sqlite

This commit is contained in:
Bubka 2024-03-29 19:26:34 +01:00
parent 55192fe89f
commit 53eef9e018

View File

@ -28,6 +28,9 @@ public function down(): void
{
Schema::table('users', function (Blueprint $table) {
$table->dropColumn('oauth_id');
});
Schema::table('users', function (Blueprint $table) {
$table->dropColumn('oauth_provider');
});
}