From e7aefe6c099f5d07d5385eb0533962258aa0b096 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Sat, 12 Oct 2019 13:07:57 +0200 Subject: [PATCH] Update message about migrations in Install --- src/Commands/Install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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',