From 8c6502de2f8ec2bd8382cd6945c327d7be400e14 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Wed, 28 Jan 2026 05:34:41 +0000
Subject: [PATCH] =Queue cleanup - seems to be working enough to get legacy before and after going!
---
inc/registry/CheckCustomTables.php | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/inc/registry/CheckCustomTables.php b/inc/registry/CheckCustomTables.php
index a54967e..16962fc 100644
--- a/inc/registry/CheckCustomTables.php
+++ b/inc/registry/CheckCustomTables.php
@@ -459,7 +459,7 @@
`last_error_hash` CHAR(32) DEFAULT NULL,
`error_message` text,
- `scheduled_at` datetime DEFAULT CURRENT_TIMESTAMP,
+ `scheduled_at` datetime DEFAULT NULL,
`started_at` datetime DEFAULT CURRENT_TIMESTAMP,
`completed_at` datetime DEFAULT NULL,
@@ -498,9 +498,9 @@
`peak_memory_usage` int DEFAULT NULL,
`peak_cpu_usage` float DEFAULT NULL,
-
- `created_at` timestamp DEFAULT CURRENT_TIMESTAMP,
+ `created_at` timestamp DEFAULT CURRENT_TIMESTAMP,
+ PRIMARY KEY (`id`),
UNIQUE KEY (date, type),
KEY `date_idx` (date),
KEY `type_idx` (type)
--
Gitblit v1.10.0