mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-08 00:03:07 +00:00
* fix: move live index migrations to regular SQL migration Live migrations that create indexes can fail on fresh installs because they run from compiled code that may reference enum values no longer present after rename migrations. Move all 16 index-related live migrations into a regular SQL migration that runs during schema setup, making fresh installs reliable. Existing installs skip the migration via windmill_migrations check. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: remove useless windmill_migrations inserts The live migration code that checked these names has been removed, so inserting them serves no purpose. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: remove unnecessary DO block from migration All statements are already idempotent via IF EXISTS / IF NOT EXISTS, so the PL/pgSQL wrapper with its early return check is not needed. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Windmill Backend
This folder holds all backend components, the src/ folder only contains files used to build the "root" binary.
Components
| name | description |
|---|---|
| windmill-api | The API server, exposing functionality to other components and the frontend |
| windmill-audit | Contains audit functionality, allowing different components to record important actions |
| windmill-common | Common code shared by all crates |
| windmill-queue | Contains job & flow queuing functionality, commonly written to by the API server and read from by workers |
| windmill-worker | The worker. Used to process and execute flows & jobs. |
| parsers | Contains code to parse signatures in different langauges. |
Compile sqlx for offline ci
cargo sqlx prepare --workspace -- --bin windmill --features enterprise