- Phase 1: Default prefs — push_message & push_follow only; migration 941 - Phase 2: Digest = new tracks from followed artists (ORIGIN §8.1), not unread notifications - Phase 3: Toggle 'désactiver marketing' + button 'Tout désactiver sauf messages et follows' - Phase 4: PushPreferencesSection first in NotificationSettings (source of truth) - Roadmap: v0.10.5 → DONE
7 lines
321 B
SQL
7 lines
321 B
SQL
-- Rollback migration 941: restore original push defaults
|
|
ALTER TABLE notification_preferences
|
|
ALTER COLUMN push_follow SET DEFAULT true,
|
|
ALTER COLUMN push_message SET DEFAULT true,
|
|
ALTER COLUMN push_like SET DEFAULT true,
|
|
ALTER COLUMN push_comment SET DEFAULT true,
|
|
ALTER COLUMN push_mention SET DEFAULT true;
|