FastAPI backend (Python 3.11, MSSQL ODBC for SambaPOS, Azure DI OCR),
kitchen_db on central PG. React/TS/Vite frontend with navy sidebar layout.
Backend: auth.py (APP_SLUG=kitchen, SimpleNamespace — archive routes use
.kitchen_id/.is_admin without modification), main.py (51 migrations, scheduler,
internal router for KDS bookings feed), api/internal.py, full archive API
(31 routers: invoices, recipes, menus, sambapos, resos, newbook, disputes,
purchase_orders, etc.), models, migrations, OCR pipeline.
kitchen_id pinned to 1 (B1 — single hotel).
Frontend: AuthGate (app=kitchen, token shim for archive compat — B5b pending),
Layout (navy sidebar, 6 sections, Lucide icons, teal --app-primary),
App.tsx (Outlet pattern, UploadApp outside Layout), index.css (full :root block).
strict: false — archive components have type issues; build clean.
Note: 45 archive components call fetch('/api/...') without /kitchen/ prefix
(B5b). Runtime 404s; deferred until after initial testing.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
79 lines
3.1 KiB
Python
79 lines
3.1 KiB
Python
"""
|
|
Migration: Add menus, menu_divisions, and menu_items tables for the Menus feature.
|
|
"""
|
|
import asyncio
|
|
from sqlalchemy import text
|
|
from database import engine
|
|
|
|
|
|
async def migrate():
|
|
async with engine.begin() as conn:
|
|
# Menus table
|
|
await conn.execute(text("""
|
|
CREATE TABLE IF NOT EXISTS menus (
|
|
id SERIAL PRIMARY KEY,
|
|
kitchen_id INTEGER NOT NULL REFERENCES kitchens(id),
|
|
name VARCHAR(255) NOT NULL,
|
|
description TEXT,
|
|
notes TEXT,
|
|
is_active BOOLEAN DEFAULT true,
|
|
sort_order INTEGER DEFAULT 0,
|
|
created_at TIMESTAMP DEFAULT NOW(),
|
|
updated_at TIMESTAMP DEFAULT NOW(),
|
|
CONSTRAINT uq_menus_kitchen_name UNIQUE (kitchen_id, name)
|
|
)
|
|
"""))
|
|
await conn.execute(text(
|
|
"CREATE INDEX IF NOT EXISTS idx_menus_kitchen_id ON menus(kitchen_id)"
|
|
))
|
|
|
|
# Menu divisions table
|
|
await conn.execute(text("""
|
|
CREATE TABLE IF NOT EXISTS menu_divisions (
|
|
id SERIAL PRIMARY KEY,
|
|
menu_id INTEGER NOT NULL REFERENCES menus(id) ON DELETE CASCADE,
|
|
name VARCHAR(100) NOT NULL,
|
|
sort_order INTEGER DEFAULT 0,
|
|
CONSTRAINT uq_menu_divisions_menu_name UNIQUE (menu_id, name)
|
|
)
|
|
"""))
|
|
await conn.execute(text(
|
|
"CREATE INDEX IF NOT EXISTS idx_menu_divisions_menu_id ON menu_divisions(menu_id)"
|
|
))
|
|
|
|
# Menu items table
|
|
await conn.execute(text("""
|
|
CREATE TABLE IF NOT EXISTS menu_items (
|
|
id SERIAL PRIMARY KEY,
|
|
menu_id INTEGER NOT NULL REFERENCES menus(id) ON DELETE CASCADE,
|
|
division_id INTEGER NOT NULL REFERENCES menu_divisions(id) ON DELETE CASCADE,
|
|
recipe_id INTEGER REFERENCES recipes(id) ON DELETE SET NULL,
|
|
display_name VARCHAR(255) NOT NULL,
|
|
description TEXT,
|
|
price NUMERIC(10, 2),
|
|
sort_order INTEGER DEFAULT 0,
|
|
snapshot_json JSONB,
|
|
confirmed_by_user_id INTEGER REFERENCES users(id),
|
|
confirmed_by_name VARCHAR(100),
|
|
published_at TIMESTAMP DEFAULT NOW(),
|
|
image_path VARCHAR(500),
|
|
uploaded_by INTEGER REFERENCES users(id),
|
|
CONSTRAINT uq_menu_items_menu_recipe UNIQUE (menu_id, recipe_id)
|
|
)
|
|
"""))
|
|
await conn.execute(text(
|
|
"CREATE INDEX IF NOT EXISTS idx_menu_items_menu_id ON menu_items(menu_id)"
|
|
))
|
|
await conn.execute(text(
|
|
"CREATE INDEX IF NOT EXISTS idx_menu_items_division_id ON menu_items(division_id)"
|
|
))
|
|
await conn.execute(text(
|
|
"CREATE INDEX IF NOT EXISTS idx_menu_items_recipe_id ON menu_items(recipe_id)"
|
|
))
|
|
print("+ Created menus, menu_divisions, and menu_items tables")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print("Running migration: add_menus")
|
|
asyncio.run(migrate())
|
|
print("Migration complete!")
|