* adding the job queue monitor * first draft of queue metrics ui * fix svelte check complaints * harmonizing naming * adding concurrency_lock table * updating ee repo ref * Rename 20241008155800_alert_lock_table.up.sql to 20241008155800_concurrency_lock_table.up.sql * Rename 20241008155800_alert_lock_table.down.sql to 20241008155800_concurrency_lock_table.down.sql * updating ee.rs * adding owner as optional column * handling of ee/non-ee * Update ee.rs with newline
7 lines
158 B
SQL
7 lines
158 B
SQL
-- Create the alert_locks table
|
|
CREATE TABLE concurrency_locks (
|
|
id VARCHAR PRIMARY KEY,
|
|
last_locked_at TIMESTAMP NOT NULL,
|
|
owner VARCHAR NULL
|
|
);
|