Skip to content
This repository has been archived by the owner on May 24, 2023. It is now read-only.

Commit

Permalink
Update migration creator to work with laravel 7
Browse files Browse the repository at this point in the history
  • Loading branch information
jradtilbrook committed May 4, 2020
1 parent 4da8776 commit 20c3548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function register()
});

$this->app->extend('migration.creator', function () {
return $this->app->make(MigrationCreator::class);
return $this->app->make(MigrationCreator::class, __DIR__ . '/../stubs/');
});
}

Expand Down

0 comments on commit 20c3548

Please sign in to comment.