v0.24.0 — Garden: harvest→pantry, structured amounts, UW Extension links

Harvest logs now carry a structured amount+unit (legacy freeform quantity
kept for old rows) and can simultaneously create a GARDEN-source pantry
item via addPlantLog's new pantry input. PlantTypes can link a UW–Madison
Extension article, searched through /api/v1/plant-types/uw-search (proxy
to hort.extension.wisc.edu's WordPress REST API); the link shows on the
type page and each plant. The garden log dialog now posts to /api/v1.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Bonna Moon
2026-07-06 11:14:11 -05:00
parent 25b1ba9aeb
commit e65d28524b
16 changed files with 443 additions and 25 deletions

View File

@@ -0,0 +1,7 @@
-- AlterTable
ALTER TABLE "PlantLog" ADD COLUMN "amount" DECIMAL(10,2),
ADD COLUMN "unit" TEXT;
-- AlterTable
ALTER TABLE "PlantType" ADD COLUMN "uwExtensionTitle" TEXT,
ADD COLUMN "uwExtensionUrl" TEXT;