mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-16 07:04:04 +00:00
13 lines
245 B
PHP
13 lines
245 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Traits;
|
|
|
|
trait DealsWithMigrations
|
|
{
|
|
protected function getMigrationPaths()
|
|
{
|
|
return [config('tenancy.migrations_directory', database_path('migrations/tenant'))];
|
|
}
|
|
}
|