chore: perauset customer project
This commit is contained in:
6
sql/0012-inventory-categories.sql
Normal file
6
sql/0012-inventory-categories.sql
Normal 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);
|
||||
Reference in New Issue
Block a user