Skip to content

Commit

Permalink
Fix migration path
Browse files Browse the repository at this point in the history
  • Loading branch information
simonhamp authored Mar 28, 2024
1 parent 37fd3d6 commit 19e2086
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ protected function registerRoutes()
protected function registerMigrations()
{
if ($this->app->runningInConsole()) {
$this->loadMigrationsFrom(__DIR__.'/../database/migrations');
$this->loadMigrationsFrom(__DIR__.'/../migrations');
}
}

Expand All @@ -61,8 +61,8 @@ protected function registerPublishing()
], 'stripe-connect-config');

$this->publishes([
__DIR__.'/../database/migrations' => $this->app->databasePath('migrations'),
__DIR__.'/../migrations' => $this->app->databasePath('migrations'),
], 'stripe-connect-migrations');
}
}
}
}

0 comments on commit 19e2086

Please sign in to comment.