diff --git a/src/ServiceProvider.php b/src/ServiceProvider.php index 729be33..c87d1f4 100644 --- a/src/ServiceProvider.php +++ b/src/ServiceProvider.php @@ -20,7 +20,6 @@ public function boot(): void { if ($this->app->runningInConsole() || $this->app->runningUnitTests()) { $this->bootCommands(); - $this->bootMigrations(); } } @@ -32,13 +31,6 @@ protected function bootCommands(): void ]); } - protected function bootMigrations(): void - { - $this->loadMigrationsFrom( - __DIR__ . '/../database/migrations' - ); - } - protected function registry(): void { $this->app->singleton(Registry::class, fn () => new Registry());