fix(db): add image column to pets table for demo pet images

Adds `image` field to pets table schema and creates migration to support storing demo pet image URLs. Resolves TypeScript error in seed.ts where image property was being referenced on insert.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
groombook-engineer[bot]
2026-04-02 11:56:49 +00:00
parent 3d9021913d
commit a867be7d55
2 changed files with 3 additions and 0 deletions
@@ -0,0 +1,2 @@
-- Add image field to pets table for demo pet image support
ALTER TABLE "pets" ADD COLUMN "image" text;