diff --git a/tests/TenantModelTest.php b/tests/TenantModelTest.php index 3e28e144..46dc6a00 100644 --- a/tests/TenantModelTest.php +++ b/tests/TenantModelTest.php @@ -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]);