v0.6.1 — Pantry: categories, price tracking, and autocomplete

This commit is contained in:
Bonna Moon
2026-06-29 17:37:59 -05:00
parent 0d52ea5ad1
commit 62a0089ec2
8 changed files with 407 additions and 56 deletions

View File

@@ -0,0 +1,9 @@
-- v0.20: pantry categories + price tracking
ALTER TABLE "Item"
ADD COLUMN "pantryCategory" TEXT,
ADD COLUMN "pantrySubcategory" TEXT,
ADD COLUMN "pricePaid" DECIMAL(10,2),
ADD COLUMN "priceUnit" TEXT;
CREATE INDEX "Item_pantryCategory_idx" ON "Item"("pantryCategory");