Files
stripstream/prisma/migrations/20260322200000_add_anonymous_mode/migration.sql
Froidefond Julien acb12b946e
All checks were successful
Build, Push & Deploy / deploy (push) Successful in 7m33s
fix: add missing migration for anonymousMode column
The column was added to the schema but no migration was created,
causing a PrismaClientKnownRequestError in production.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-22 20:39:37 +01:00

3 lines
99 B
SQL

-- AlterTable
ALTER TABLE "preferences" ADD COLUMN "anonymousMode" BOOLEAN NOT NULL DEFAULT false;