From 4868064c44633533c21f300bd1c4a9b565b4ec26 Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Tue, 8 Apr 2025 01:54:29 -0700 Subject: [PATCH] product attributes deleted field not added to migration --- .../Migrations/20250408080349_AddSoftDeleteToAllTables.php | 7 +++++++ 1 file changed, 7 insertions(+) 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(); } }