- Assembly template system (13 templates: burrito, fried rice, omelette, stir fry, pasta, sandwich, grain bowl, soup/stew, casserole, pancakes, porridge, pie, pudding) with role-based matching, whole-word single-keyword guard, deterministic titles via MD5 pantry hash - Prep-state stripping: strips 'melted butter' → 'butter' for coverage checks; reconstructs actionable states as 'Before you start:' cooking instructions (NutritionPanel prep_notes field + RecipesView.vue display block) - FTS5 fixes: always double-quote all terms; strip apostrophes to prevent syntax errors on brands like "Stouffer's"; 'plant-based' → bare 'based' crash - Bidirectional synonym expansion: alt-meat, alt-chicken, alt-beef, alt-pork mapped to canonical texture class; pantry expansion covers 'hamburger' from 'burger patties' etc. - Texture profile backfill script (378K ingredient_profiles rows) with macro-derived classification in priority order (fatty → creamy → starchy → firm → fibrous → tender → liquid → neutral); oats/legumes starchy-first fix - LLM prompt: ban flavoured/sweetened ingredients (vanilla yoghurt) from savoury - Migrations 014 (nutrition macros) + 015 (recipe FTS index) - Nutrition estimation pipeline script - gitignore MagicMock sqlite test artifacts
18 lines
977 B
SQL
18 lines
977 B
SQL
-- Migration 014: Add macro nutrition columns to recipes and ingredient_profiles.
|
|
--
|
|
-- recipes: sugar, carbs, fiber, servings, and an estimated flag.
|
|
-- ingredient_profiles: carbs, fiber, calories, sugar per 100g (for estimation fallback).
|
|
|
|
ALTER TABLE recipes ADD COLUMN sugar_g REAL;
|
|
ALTER TABLE recipes ADD COLUMN carbs_g REAL;
|
|
ALTER TABLE recipes ADD COLUMN fiber_g REAL;
|
|
ALTER TABLE recipes ADD COLUMN servings REAL;
|
|
ALTER TABLE recipes ADD COLUMN nutrition_estimated INTEGER NOT NULL DEFAULT 0;
|
|
|
|
ALTER TABLE ingredient_profiles ADD COLUMN carbs_g_per_100g REAL DEFAULT 0.0;
|
|
ALTER TABLE ingredient_profiles ADD COLUMN fiber_g_per_100g REAL DEFAULT 0.0;
|
|
ALTER TABLE ingredient_profiles ADD COLUMN calories_per_100g REAL DEFAULT 0.0;
|
|
ALTER TABLE ingredient_profiles ADD COLUMN sugar_g_per_100g REAL DEFAULT 0.0;
|
|
|
|
CREATE INDEX idx_recipes_sugar_g ON recipes (sugar_g);
|
|
CREATE INDEX idx_recipes_carbs_g ON recipes (carbs_g);
|