Files
onepanel/db/20200123130105_add_latest_workflow_template_version.sql
2020-01-27 10:00:12 -08:00

17 lines
384 B
SQL

-- +goose Up
ALTER TABLE workflow_template_versions ADD COLUMN is_latest boolean;
UPDATE workflow_template_versions
SET is_latest = false;
UPDATE workflow_template_versions
SET is_latest = true
WHERE id IN (
SELECT max(id)
FROM workflow_template_versions
GROUP BY workflow_template_id, id
);
-- +goose Down
ALTER TABLE workflow_template_versions DROP COLUMN is_latest;