Skip to content

Commit

Permalink
Added missing database to migration filename path.
Browse files Browse the repository at this point in the history
  • Loading branch information
telkins committed May 9, 2018
1 parent 4cec62f commit a8c57cf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Changed
- ...

## [0.0.6] - 2018-05-09
### Fixed
- Corrected migration filename error. Third time's the charm...?!

## [0.0.5] - 2018-05-09
### Fixed
- Corrected copy/paste filename error related to migration filename and publishing.
Expand Down Expand Up @@ -43,7 +47,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- A set of tests.
- Minimal documentation.

[Unreleased]: https://github.com/telkins/laravel-dag-manager/compare/v0.0.5...HEAD
[Unreleased]: https://github.com/telkins/laravel-dag-manager/compare/v0.0.6...HEAD
[0.0.6]: https://github.com/telkins/laravel-dag-manager/compare/v0.0.5...v0.0.6
[0.0.5]: https://github.com/telkins/laravel-dag-manager/compare/v0.0.4...v0.0.5
[0.0.4]: https://github.com/telkins/laravel-dag-manager/compare/v0.0.3...v0.0.4
[0.0.3]: https://github.com/telkins/laravel-dag-manager/compare/v0.0.2...v0.0.3
Expand Down
2 changes: 1 addition & 1 deletion src/Providers/DagServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function boot()
$timestamp = date('Y_m_d_His', time());

$this->publishes([
__DIR__ . '/../../migrations/create_dag_edges_table.php.stub' => database_path("/migrations/{$timestamp}_create_dag_edges_table.php"),
__DIR__ . '/../../database/migrations/create_dag_edges_table.php.stub' => database_path("/migrations/{$timestamp}_create_dag_edges_table.php"),
], 'migrations');
}
}
Expand Down

0 comments on commit a8c57cf

Please sign in to comment.