PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
stancl
/
tenancy
/
src
/
Concerns
/
Editing: DealsWithMigrations.php
<?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'); } }
SAVE
CANCEL