mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 16:02:19 +00:00
5 lines
130 B
SQL
5 lines
130 B
SQL
-- Add up migration script here
|
|
ALTER TABLE completed_job
|
|
ADD COLUMN started_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW();
|
|
|