add option for users to make their favorites private

This commit is contained in:
2026-08-06 22:40:53 +02:00
parent 7b186dcdb2
commit 2cd8bd91ff
14 changed files with 193 additions and 9 deletions

View File

@@ -0,0 +1,5 @@
-- Add favorites_private column to user_options table
ALTER TABLE user_options
ADD COLUMN IF NOT EXISTS favorites_private boolean DEFAULT false;
COMMENT ON COLUMN public.user_options.favorites_private IS 'When true, only the owner and administrators can view the user''s favorites list';