Skip to content

Commit 372e943

Browse files
committed
Fix migration paths
1 parent 7968e7e commit 372e943

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Providers/TaggingServiceProvider.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ class TaggingServiceProvider extends ServiceProvider {
2020
public function boot()
2121
{
2222
$this->publishes([
23-
__DIR__.'/../config/tagging.php' => config_path('tagging.php'),
24-
__DIR__.'/../migrations/2014_01_07_073615_create_tagged_table.php' => $this->app->databasePath().('/migrations/2014_01_07_073615_create_tagged_table.php'),
25-
__DIR__.'/../migrations/2014_01_07_073615_create_tags_table.php' => $this->app->databasePath().('/migrations/2014_01_07_073615_create_tags_table.php'),
23+
__DIR__.'/../../config/tagging.php' => config_path('tagging.php'),
24+
__DIR__.'/../../migrations/2014_01_07_073615_create_tagged_table.php' => $this->app->databasePath().('/migrations/2014_01_07_073615_create_tagged_table.php'),
25+
__DIR__.'/../../migrations/2014_01_07_073615_create_tags_table.php' => $this->app->databasePath().('/migrations/2014_01_07_073615_create_tags_table.php'),
2626
]);
2727
}
2828

@@ -56,4 +56,4 @@ public function when()
5656
return array('artisan.start');
5757
}
5858

59-
}
59+
}

0 commit comments

Comments
 (0)