fix: add missing migration for weatherRecentCities column

The weatherRecentCities field was added to the Prisma schema but no
migration was created, causing PrismaClientValidationError on the server.

v1.51.3

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
mARTin 2026-03-19 09:30:03 +01:00
parent 918d87cbbb
commit 39c0ac64fc
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "my-weekly-todo-list", "name": "my-weekly-todo-list",
"version": "1.51.2", "version": "1.51.3",
"description": "A web-based weekly task management application that organizes to-dos and calendar events in a single, intuitive weekly view", "description": "A web-based weekly task management application that organizes to-dos and calendar events in a single, intuitive weekly view",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {

View File

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "User" ADD COLUMN IF NOT EXISTS "weatherRecentCities" JSONB;