mirror of
https://github.com/xCyanGrizzly/DragonsStash.git
synced 2026-07-22 23:12:02 +00:00
Additive Postgres migration (default true) that backs the per-topic fetch enable/disable toggle. Existing rows backfill to enabled, so current behaviour is unchanged. Migration applied to the live DB via CI prisma migrate deploy (deferred, per environment). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
6 lines
300 B
SQL
6 lines
300 B
SQL
-- AlterTable: per-topic user-controlled fetch toggle (forum channels)
|
|
-- Additive, safe default (true) so existing rows backfill to "enabled" and
|
|
-- current behaviour is unchanged. Disabling is non-destructive.
|
|
ALTER TABLE "topic_progress"
|
|
ADD COLUMN "fetchEnabled" BOOLEAN NOT NULL DEFAULT true;
|