We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 250993c commit 8a477d0Copy full SHA for 8a477d0
2 files changed
CHANGELOG.md
@@ -4,6 +4,7 @@
4
when WP_DEBUG is true or when the "--debug" flag is passed to
5
the WP CLI. This improves performance when debug logs are
6
disabled by allowing us to skip the debug calls entirely.
7
+- Remove unused duration column from jobs table.
8
9
## 9.2.1 (2025-07-18)
10
src/JobQueue.php
@@ -20,7 +20,6 @@ public static function createTable(): void {
20
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
21
job_type VARCHAR(30) NOT NULL,
22
status VARCHAR(30) NOT NULL,
23
- duration SMALLINT(6) UNSIGNED NULL,
24
triggering_post_id BIGINT(20) UNSIGNED NULL,
25
PRIMARY KEY (id)
26
) $charset_collate;";
0 commit comments