feat(categories): add branch visibility selection
All checks were successful
Staging Build / build (push) Successful in 2m43s

This commit is contained in:
DanielS
2026-07-09 14:26:56 +02:00
parent 07c7d8c656
commit 071e669b71
4 changed files with 76 additions and 8 deletions

View File

@@ -0,0 +1,3 @@
-- Add show_in_kauf and show_in_abo columns to categories table
ALTER TABLE public.categories ADD COLUMN IF NOT EXISTS show_in_kauf BOOLEAN DEFAULT true NOT NULL;
ALTER TABLE public.categories ADD COLUMN IF NOT EXISTS show_in_abo BOOLEAN DEFAULT true NOT NULL;