Skip to content

Commit

Permalink
fix(migrations): publish migrations fixed
Browse files Browse the repository at this point in the history
--tag=migrations was linking to a non existing stub.
  • Loading branch information
s.walbrun authored and ksassnowski committed Aug 11, 2022
1 parent 2340be4 commit 2c8fc9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/VentureServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function boot(): void

if (!\class_exists('CreateWorkflowTables')) {
$this->publishes([
__DIR__ . '/../database/migrations/create_media_table.php.stub' => database_path('migrations/' . \date('Y_m_d_His', \time()) . '_create_workflow_tables.php'),
__DIR__ . '/../database/migrations/create_workflow_tables.php.stub' => database_path('migrations/' . \date('Y_m_d_His', \time()) . '_create_workflow_tables.php'),
], ['migrations']);
}

Expand Down

0 comments on commit 2c8fc9d

Please sign in to comment.