* 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>
5 lines
269 B
SQL
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;
|