1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 20:14:03 +00:00

Update message about migrations in Install

This commit is contained in:
Samuel Štancl 2019-10-12 13:07:57 +02:00
parent a1270189da
commit e7aefe6c09

View file

@ -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',