Skip to content

Commit

Permalink
Merge pull request antonioribeiro#403 from 0x15f/master
Browse files Browse the repository at this point in the history
Fix migrations with default MySQL connection.
  • Loading branch information
antonioribeiro authored Jan 26, 2019
2 parents 626795b + dc372dd commit 7c4e6da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Support/Migration.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ protected function checkConnection()
{
$this->manager = app()->make('db');

$this->connection = $this->manager->connection('tracker');
$this->connection = $this->manager->connection(config('tracker.connection'));

parent::checkConnection();
}
Expand Down

0 comments on commit 7c4e6da

Please sign in to comment.