mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 16:02:19 +00:00
7 lines
198 B
SQL
7 lines
198 B
SQL
-- Add up migration script here
|
|
CREATE TABLE custom_concurrency_key_ended (
|
|
key VARCHAR(255) NOT NULL,
|
|
ended_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
|
|
PRIMARY KEY (key, ended_at)
|
|
);
|