diff --git a/tests/TenantModelTest.php b/tests/TenantModelTest.php index 46dc6a00..3e28e144 100644 --- a/tests/TenantModelTest.php +++ b/tests/TenantModelTest.php @@ -68,7 +68,11 @@ class TenantModelTest extends TestCase { Schema::drop('domains'); Schema::table('tenants', function (Blueprint $table) { - $table->bigIncrements('id')->change(); + $table->dropColumn('id'); + }); + + Schema::table('tenants', function (Blueprint $table) { + $table->bigIncrements('id'); }); unset(app()[UniqueIdentifierGenerator::class]);