Skip to content

Commit

Permalink
Merge pull request #9 from SadeghPM/master
Browse files Browse the repository at this point in the history
Fix bug in landlord migration class name
  • Loading branch information
freekmurze authored May 18, 2020
2 parents ef32627 + a889376 commit 888ddbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MultitenancyServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected function registerPublishables(): self

if (! class_exists('CreateLandlordTenantsTable')) {
$this->publishes([
__DIR__ . '/../database/migrations/landlord/create_landlord_tenants_table.php.stub' => database_path('migrations/landlord' . date('Y_m_d_His', time()) . '_create_tenants_table.php'),
__DIR__ . '/../database/migrations/landlord/create_landlord_tenants_table.php.stub' => database_path('migrations/landlord/' . date('Y_m_d_His', time()) . '_create_landlord_tenants_table.php'),
], 'migrations');
}

Expand Down

0 comments on commit 888ddbe

Please sign in to comment.