Skip to content

Commit

Permalink
Fix publishable migrations tag
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkomarev committed Sep 26, 2018
1 parent 6bfd5dc commit 8b39fb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ $ php artisan migrate
If you want to make changes in migrations, publish them to your application first.

```sh
$ php artisan vendor:publish --provider="Cog\Laravel\Sense\Providers\SenseServiceProvider" --tag=migrations
$ php artisan vendor:publish --tag=sense-migrations
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion src/Providers/SenseServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ protected function offerPublishing(): void

$this->publishes([
$migrationsPath => database_path('migrations'),
], 'migrations');
], 'sense-migrations');

$this->publishes([
__DIR__ . '/../../config/sense.php' => config_path('sense.php'),
Expand Down

0 comments on commit 8b39fb5

Please sign in to comment.