recent changes

This commit is contained in:
Marcelo
2026-04-29 05:05:00 +00:00
parent 7e0fe5c2e1
commit 62169b163c
25 changed files with 6698 additions and 1013 deletions

View File

@@ -0,0 +1,8 @@
-- Run on the Pi/MariaDB instance used by Node-RED (local `work_orders` table).
-- Required before importing updated flows that INSERT/UPDATE mold, cavities_total, cavities_active.
ALTER TABLE work_orders ADD COLUMN mold VARCHAR(256) NULL;
ALTER TABLE work_orders ADD COLUMN cavities_total INT NULL;
ALTER TABLE work_orders ADD COLUMN cavities_active INT NULL;
-- If columns already exist, skip this script or adjust manually.