diff --git a/prisma/migrations/20251123000000_add_project_header_visibility_fields/migration.sql b/prisma/migrations/20251123000000_add_project_header_visibility_fields/migration.sql new file mode 100644 index 0000000..f343488 --- /dev/null +++ b/prisma/migrations/20251123000000_add_project_header_visibility_fields/migration.sql @@ -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;