Skip to content

Commit

Permalink
Fix migration paths
Browse files Browse the repository at this point in the history
  • Loading branch information
rtconner committed Sep 6, 2015
1 parent 7968e7e commit 372e943
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Providers/TaggingServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ class TaggingServiceProvider extends ServiceProvider {
public function boot()
{
$this->publishes([
__DIR__.'/../config/tagging.php' => config_path('tagging.php'),
__DIR__.'/../migrations/2014_01_07_073615_create_tagged_table.php' => $this->app->databasePath().('/migrations/2014_01_07_073615_create_tagged_table.php'),
__DIR__.'/../migrations/2014_01_07_073615_create_tags_table.php' => $this->app->databasePath().('/migrations/2014_01_07_073615_create_tags_table.php'),
__DIR__.'/../../config/tagging.php' => config_path('tagging.php'),
__DIR__.'/../../migrations/2014_01_07_073615_create_tagged_table.php' => $this->app->databasePath().('/migrations/2014_01_07_073615_create_tagged_table.php'),
__DIR__.'/../../migrations/2014_01_07_073615_create_tags_table.php' => $this->app->databasePath().('/migrations/2014_01_07_073615_create_tags_table.php'),
]);
}

Expand Down Expand Up @@ -56,4 +56,4 @@ public function when()
return array('artisan.start');
}

}
}

0 comments on commit 372e943

Please sign in to comment.