chore: perauset customer project

This commit is contained in:
e2e
2026-07-11 08:35:17 +02:00
commit 37eea09bf0
293 changed files with 28412 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
-- Add category (enum) and subcategory (free text) to inventory items
ALTER TABLE app.inventory_item
ADD COLUMN category TEXT NOT NULL DEFAULT 'operations',
ADD COLUMN subcategory TEXT;
CREATE INDEX idx_inventory_item_category ON app.inventory_item(category);