We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbdf950 commit f95b978Copy full SHA for f95b978
docs/migration-guide/4.0.md
@@ -54,15 +54,15 @@ Tasks are `SYSTEM` or `VALIDATE` workflows that are run in the context of a syst
54
Example on how to update the `target` and `is_task` for all workflows that start with `validate_`:
55
56
```sql
57
-UPDATE workflow
+UPDATE workflows
58
SET target = 'VALIDATE', is_task = TRUE
59
WHERE name LIKE 'validate_%';
60
```
61
62
Example on how to update the `target` and `is_task` for all workflows that are `SYSTEM` or `VALIDATE`:
63
64
65
66
SET is_task = TRUE
67
WHERE target IN ('SYSTEM', 'VALIDATE');
68
0 commit comments