-- Migration: 0034_extend_pet_profile_columns.sql -- GRO-1850: Adds temperament_score, temperament_flags, medical_alerts, -- and preferred_cuts columns to the pets table. ALTER TABLE "pets" ADD COLUMN "temperament_score" integer; ALTER TABLE "pets" ADD COLUMN "temperament_flags" jsonb DEFAULT '[]'; ALTER TABLE "pets" ADD COLUMN "medical_alerts" jsonb DEFAULT '[]'; ALTER TABLE "pets" ADD COLUMN "preferred_cuts" jsonb DEFAULT '[]';