Skip to content

Commit

Permalink
Merge pull request #25 from malijani/patch-1
Browse files Browse the repository at this point in the history
✔️ Fix migration path in service provider.
  • Loading branch information
nagi1 authored Apr 19, 2021
2 parents f4ee545 + e295f73 commit bc4fe93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LaravelRatingServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ class LaravelRatingServiceProvider extends ServiceProvider
public function boot()
{
$this->publishes([
__DIR__.'/../migrations/create_ratings_table.php' => app()->basePath().'/database/migrations/'.date('Y_m_d_His').'_create_ratings_table.php',
__DIR__.'/../database/migrations/create_ratings_table.php' => app()->basePath().'/database/migrations/'.date('Y_m_d_His').'_create_ratings_table.php',

__DIR__.'/../migrations/add_type_column_to_ratings_table.php' => app()->basePath().'/database/migrations/'.date('Y_m_d_His').'_add_type_column_to_ratings_table.php',
__DIR__.'/../database/migrations/add_type_column_to_ratings_table.php' => app()->basePath().'/database/migrations/'.date('Y_m_d_His').'_add_type_column_to_ratings_table.php',
], 'laravelRatings');
}

Expand Down

0 comments on commit bc4fe93

Please sign in to comment.