Update RabbitMQ config and eventbus. Improve secret filter logging. Refine presence, cloud, and social services. Update announcement and feature flag handlers. Add track_likes updated_at migration. Rebuild seed binary. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
3 lines
184 B
SQL
3 lines
184 B
SQL
-- Fix: add missing updated_at column to track_likes (GORM model expects it)
|
|
ALTER TABLE public.track_likes
|
|
ADD COLUMN IF NOT EXISTS updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW();
|