diff --git a/config/Migrations/20250408080349_AddSoftDeleteToAllTables.php b/config/Migrations/20250408080349_AddSoftDeleteToAllTables.php index bc56e29..0fecf4b 100644 --- a/config/Migrations/20250408080349_AddSoftDeleteToAllTables.php +++ b/config/Migrations/20250408080349_AddSoftDeleteToAllTables.php @@ -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(); } }