Skip to content

Commit 8a477d0

Browse files
committed
Remove unused duration column from jobs table
1 parent 250993c commit 8a477d0

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
when WP_DEBUG is true or when the "--debug" flag is passed to
55
the WP CLI. This improves performance when debug logs are
66
disabled by allowing us to skip the debug calls entirely.
7+
- Remove unused duration column from jobs table.
78

89
## 9.2.1 (2025-07-18)
910

src/JobQueue.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ public static function createTable(): void {
2020
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
2121
job_type VARCHAR(30) NOT NULL,
2222
status VARCHAR(30) NOT NULL,
23-
duration SMALLINT(6) UNSIGNED NULL,
2423
triggering_post_id BIGINT(20) UNSIGNED NULL,
2524
PRIMARY KEY (id)
2625
) $charset_collate;";

0 commit comments

Comments
 (0)