mirror of
https://github.com/Dvorinka/MyClubServer.git
synced 2026-06-03 18:22:57 +00:00
7 lines
253 B
SQL
7 lines
253 B
SQL
-- Add preferences JSONB column to newsletter_subscriptions
|
|
ALTER TABLE newsletter_subscriptions
|
|
ADD COLUMN IF NOT EXISTS preferences JSONB DEFAULT '{}'::jsonb;
|
|
|
|
-- Update trigger exists from previous migration to keep updated_at behavior (no-op here)
|
|
|