diff --git a/src/Commands/Install.php b/src/Commands/Install.php index 0d3bd834..1bf334e9 100644 --- a/src/Commands/Install.php +++ b/src/Commands/Install.php @@ -73,7 +73,7 @@ Route::get('/app', function () { $this->info('✔️ Created routes/tenant.php'); $this->line(''); - $this->line("This package lets you store data about tenants either in Redis or in a relational database like MySQL. If you're going to use the database storage, you need to create a tenants table."); + $this->line("This package lets you store data about tenants either in Redis or in a relational database like MySQL. If you're going to use the database storage, you need to create tables for tenants and domains."); if ($this->confirm('Do you want to publish the default database migrations?', true)) { $this->callSilent('vendor:publish', [ '--provider' => 'Stancl\Tenancy\TenancyServiceProvider',