From cbf143c7a09ba677c8ffb8f2ebea77191e37fe35 Mon Sep 17 00:00:00 2001 From: Krzysiej Date: Sat, 10 Jan 2026 09:21:59 +0100 Subject: [PATCH] Handle lastSeen column and all the discontinued items. --- src/Command/Migrate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/Migrate.php b/src/Command/Migrate.php index af77e95..1b6c702 100644 --- a/src/Command/Migrate.php +++ b/src/Command/Migrate.php @@ -123,7 +123,7 @@ class Migrate extends Command if (!Capsule::schema()->hasColumn('products', 'lastSeen')) { Capsule::schema()->table('products', function (Blueprint $table) { - $table->date('last_seen')->nullable(); + $table->date('lastSeen')->nullable(); }); } } -- 2.52.0