Make the temp datetime nullable

This commit is contained in:
snipe
2026-04-14 22:31:00 +01:00
parent 17c73c4017
commit 676cd66e4b
@@ -29,7 +29,7 @@ class DenormalizedEolAndAddColumnForExplicitDateToAssets extends Migration
// after the eol_explicit stuff is done
Schema::table('companies', function (Blueprint $table) {
if (! Schema::hasColumn('companies', 'deleted_at')) {
$table->datetime('deleted_at')->default(false);
$table->datetime('deleted_at')->nullable()->default(null);
}
});