Skip to content

Commit

Permalink
Fix bug in landlord migration class name
Browse files Browse the repository at this point in the history
  • Loading branch information
SadeghPM committed May 17, 2020
1 parent d74f83a commit a889376
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 @@ -46,7 +46,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 a889376

Please sign in to comment.