Add missing migration for ProjectFile.pageCount column

Column was in Prisma schema but had no migration file, causing
'column does not exist' errors on file uploads.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Matt 2026-02-16 13:23:18 +01:00
parent 4d40afec6e
commit c707899179
1 changed files with 2 additions and 0 deletions

View File

@ -0,0 +1,2 @@
-- Add pageCount column to ProjectFile (was in schema but missing migration)
ALTER TABLE "ProjectFile" ADD COLUMN IF NOT EXISTS "pageCount" INTEGER;