Skip to content

Commit

Permalink
Update ServiceProvider.php
Browse files Browse the repository at this point in the history
  • Loading branch information
mpociot authored Sep 10, 2018
1 parent 9abd756 commit 536c732
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/Mpociot/Versionable/Providers/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,8 @@ public function register ()
*/
public function boot()
{
$this->loadMigrationsFrom(__DIR__ . '/../../../migrations');


$this->publishes([
__DIR__.'/../../../config/config.php' => config_path('versionable.php'),
], 'config');
}
}
}

1 comment on commit 536c732

@nonoesp
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey, @mpociot. Why did you remove loadMigrationsFrom here? I took it back without noticing to avoid having to publish them manually.

Please sign in to comment.