Fix DB model.

This commit is contained in:
2025-07-09 18:08:14 +02:00
parent b488676327
commit 092a8b7084
3 changed files with 8 additions and 5 deletions

View File

@@ -0,0 +1,7 @@
-- Remove all email preference columns from user_preferences table
-- These columns were not being used and are being removed to clean up the schema
ALTER TABLE user_preferences
DROP COLUMN IF EXISTS email_daily_summary,
DROP COLUMN IF EXISTS email_notifications,
DROP COLUMN IF EXISTS email_weekly_summary;