* feat: Mute workspace error handler for flows and scripts * implement BE muting * Add tooltip to bell icon * change field name to ws_error_handler_muted * revert new field for queue table * Error when error handler not set * extract svelte component and use flow table column * Fix flow error handler result arg
3 lines
199 B
SQL
3 lines
199 B
SQL
-- Add up migration script here
|
|
ALTER TABLE script ADD COLUMN ws_error_handler_muted BOOLEAN NOT NULL DEFAULT false;
|
|
ALTER TABLE flow ADD COLUMN ws_error_handler_muted BOOLEAN NOT NULL DEFAULT false; |