Files
windmill/backend/migrations/20241121133158_flow_node.down.sql
Lucas Abel e4784e89da feat(backend): implement flow scripts (#4748)
* feat(backend): implement flow scripts

* conditionally resolve reduced flow value

* conditionally use flow scripts based on the min worker version

* grant all to `flow_{version_lite,node}`

* do not silently discard errors

* env: add flow script feature flag

* flow script on cloud automatically

---------

Co-authored-by: Ruben Fiszel <ruben@rubenfiszel.com>
2024-11-25 23:20:51 +01:00

5 lines
143 B
SQL

-- Add down migration script here
DROP TABLE IF EXISTS flow_version_lite;
DROP TABLE IF EXISTS flow_node;
DROP INDEX IF EXISTS flow_node_hash;