feat(persoenliche-ausruestung): show catalog category, remove size/date columns, make zustand admin-configurable
This commit is contained in:
@@ -7,11 +7,9 @@
|
||||
ALTER TABLE persoenliche_ausruestung DROP CONSTRAINT IF EXISTS persoenliche_ausruestung_zustand_check;
|
||||
|
||||
-- 2. Seed default zustand options into app_settings
|
||||
INSERT INTO app_settings (key, value, updated_by, updated_at)
|
||||
INSERT INTO app_settings (key, value)
|
||||
VALUES (
|
||||
'personal_equipment_zustand_options',
|
||||
'[{"key":"gut","label":"Gut","color":"success"},{"key":"beschaedigt","label":"Beschädigt","color":"warning"},{"key":"abgaengig","label":"Abgängig","color":"error"},{"key":"verloren","label":"Verloren","color":"default"}]',
|
||||
'system',
|
||||
NOW()
|
||||
'[{"key":"gut","label":"Gut","color":"success"},{"key":"beschaedigt","label":"Beschädigt","color":"warning"},{"key":"abgaengig","label":"Abgängig","color":"error"},{"key":"verloren","label":"Verloren","color":"default"}]'
|
||||
)
|
||||
ON CONFLICT (key) DO NOTHING;
|
||||
|
||||
Reference in New Issue
Block a user