a867be7d55
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>
3 lines
104 B
SQL
3 lines
104 B
SQL
-- Add image field to pets table for demo pet image support
|
|
ALTER TABLE "pets" ADD COLUMN "image" text;
|