Skip to content

Commit

Permalink
try reverting TenantModelTest change
Browse files Browse the repository at this point in the history
  • Loading branch information
stancl committed Mar 12, 2024
1 parent 11507d2 commit 6dc61f8
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions tests/TenantModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
Expand Down

0 comments on commit 6dc61f8

Please sign in to comment.