D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
public_html
/
vendor
/
stancl
/
tenancy
/
src
/
Concerns
/
Filename :
DealsWithMigrations.php
back
Copy
<?php declare(strict_types=1); namespace Stancl\Tenancy\Concerns; trait DealsWithMigrations { protected function getMigrationPaths() { if ($this->input->hasOption('path') && $this->input->getOption('path')) { return parent::getMigrationPaths(); } return database_path('migrations/tenant'); } }