This commit is contained in:
snipe
2026-04-14 22:50:32 +01:00
parent fd5736fac4
commit 029634707b
2 changed files with 1 additions and 2 deletions
@@ -63,7 +63,6 @@ class DenormalizedEolAndAddColumnForExplicitDateToAssets extends Migration
'asset_eol_date' => $this->eolUpdateExpression(),
]);
}
/**
@@ -13,7 +13,7 @@ return new class extends Migration
{
Schema::table('companies', function (Blueprint $table) {
if (!Schema::hasColumn('companies', 'deleted_at')) {
if (! Schema::hasColumn('companies', 'deleted_at')) {
$table->softDeletes();
}
});