mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 16:02:19 +00:00
3 lines
195 B
SQL
3 lines
195 B
SQL
-- Add up migration script here
|
|
alter table capture DROP constraint caputre_payload_too_big;
|
|
alter table capture add constraint capture_payload_too_big check (length(payload::text) < 512 * 1024); |