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

try reverting TenantModelTest change

This commit is contained in:
Samuel Štancl 2024-03-12 12:45:24 +01:00
parent 11507d289c
commit 6dc61f8abf

View file

@ -68,11 +68,7 @@ class TenantModelTest extends TestCase
{
Schema::drop('domains');
Schema::table('tenants', function (Blueprint $table) {
$table->dropColumn('id');
});
Schema::table('tenants', function (Blueprint $table) {
$table->bigIncrements('id');
$table->bigIncrements('id')->change();
});
unset(app()[UniqueIdentifierGenerator::class]);