Belt and suspenders

This commit is contained in:
snipe
2026-04-14 22:50:21 +01:00
parent f3ed2d9dd8
commit fd5736fac4
2 changed files with 6 additions and 9 deletions
@@ -25,11 +25,10 @@ class DenormalizedEolAndAddColumnForExplicitDateToAssets extends Migration
});
// This is a back in time migration to fix restores from very old versions of Snipe-IT where
// companies were not soft-deletable. We will undo this in this migration
// after the eol_explicit stuff is done
// companies were not soft-deletable.
Schema::table('companies', function (Blueprint $table) {
if (! Schema::hasColumn('companies', 'deleted_at')) {
$table->datetime('deleted_at')->nullable()->default(null);
$table->softDeletes();
}
});
@@ -64,11 +63,6 @@ class DenormalizedEolAndAddColumnForExplicitDateToAssets extends Migration
'asset_eol_date' => $this->eolUpdateExpression(),
]);
Schema::table('companies', function (Blueprint $table) {
if (Schema::hasColumn('companies', 'deleted_at')) {
$table->dropColumn('deleted_at');
}
});
}
@@ -11,8 +11,11 @@ return new class extends Migration
*/
public function up(): void
{
Schema::table('companies', function (Blueprint $table) {
$table->softDeletes();
if (!Schema::hasColumn('companies', 'deleted_at')) {
$table->softDeletes();
}
});
}