Stupid laravel and its forced migrations.

This commit is contained in:
James Cole
2022-04-20 16:25:11 +02:00
parent 555b358b80
commit 75f5b5b51d

View File

@@ -45,7 +45,6 @@ class AppServiceProvider extends ServiceProvider
if ('heroku' === config('app.env')) { if ('heroku' === config('app.env')) {
URL::forceScheme('https'); URL::forceScheme('https');
} }
Sanctum::ignoreMigrations();
} }
/** /**
@@ -56,5 +55,6 @@ class AppServiceProvider extends ServiceProvider
public function register(): void public function register(): void
{ {
Passport::ignoreMigrations(); Passport::ignoreMigrations();
Sanctum::ignoreMigrations();
} }
} }