Handle lastSeen column and all the discontinued items.

This commit was merged in pull request #36.
This commit is contained in:
2026-01-10 09:21:59 +01:00
parent 7920172735
commit cbf143c7a0

View File

@@ -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();
});
}
}