Files
windmill/backend/migrations/20250930145445_add_dynamic_skip.up.sql
Alexander Petric ae8d37fc34 feat: add dynamic skip for schedules (#6739)
* feat: add dynamic skip for schedules

* npm check

* accidental rename

* fixing tests

* Update SQLx metadata

* simplify api / queries

---------

Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com>
2025-10-08 09:18:15 +00:00

5 lines
269 B
SQL

-- Add dynamic_skip column to schedule table
-- This column stores the path to a script that validates scheduled datetimes
-- The handler receives the scheduled_for datetime and returns a boolean
ALTER TABLE schedule ADD COLUMN dynamic_skip VARCHAR(1000) DEFAULT NULL;