Belt and suspenders
This commit is contained in:
+2
-8
@@ -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();
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user