product attributes deleted field not added to migration

This commit is contained in:
2025-04-08 01:54:29 -07:00
parent cf7c67763c
commit 4868064c44

View File

@@ -55,5 +55,12 @@ class AddSoftDeleteToAllTables extends BaseMigration
'null' => true,
]);
$table->update();
$table = $this->table('product_attributes');
$table->addColumn('deleted', 'datetime', [
'default' => null,
'null' => true,
]);
$table->update();
}
}