Merge pull request #19 from jedmund/hotfix/project-loading

fix: add missing migration for project header visibility fields
This commit is contained in:
Justin Edmund 2025-11-23 06:06:49 -08:00 committed by GitHub
commit 3a1670c096
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,4 @@
-- AlterTable
ALTER TABLE "Project" ADD COLUMN "showFeaturedImageInHeader" BOOLEAN NOT NULL DEFAULT true,
ADD COLUMN "showBackgroundColorInHeader" BOOLEAN NOT NULL DEFAULT true,
ADD COLUMN "showLogoInHeader" BOOLEAN NOT NULL DEFAULT true;