1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 09:34:05 +00:00

Add support for postgres schema

This commit is contained in:
Nuradiyana 2019-12-02 01:54:07 +07:00
parent fd00be646e
commit 2ff3dd4283
5 changed files with 127 additions and 2 deletions

View file

@ -11,6 +11,7 @@ use Stancl\Tenancy\Tenant;
use Stancl\Tenancy\TenantDatabaseManagers\MySQLDatabaseManager;
use Stancl\Tenancy\TenantDatabaseManagers\PostgreSQLDatabaseManager;
use Stancl\Tenancy\TenantDatabaseManagers\SQLiteDatabaseManager;
use Stancl\Tenancy\TenantDatabaseManagers\PostgreSQLSchemaManager;
class TenantDatabaseManagerTest extends TestCase
{
@ -78,6 +79,7 @@ class TenantDatabaseManagerTest extends TestCase
['mysql', MySQLDatabaseManager::class],
['sqlite', SQLiteDatabaseManager::class],
['pgsql', PostgreSQLDatabaseManager::class],
['schema', PostgreSQLSchemaManager::class]
];
}