From 6dc61f8abfc7f593e5072e62c1366c1fb954433d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Tue, 12 Mar 2024 12:45:24 +0100 Subject: [PATCH] try reverting TenantModelTest change --- tests/TenantModelTest.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/TenantModelTest.php b/tests/TenantModelTest.php index 3e28e144e..46dc6a006 100644 --- a/tests/TenantModelTest.php +++ b/tests/TenantModelTest.php @@ -68,11 +68,7 @@ public function autoincrement_ids_are_supported() { 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]);