-- Migration: 0030_extended_pet_profile -- Adds extended profile fields to the pets table BEGIN; ALTER TABLE pets ADD COLUMN coat_type text; ALTER TABLE pets ADD COLUMN temperament_score integer; ALTER TABLE pets ADD COLUMN temperament_flags jsonb DEFAULT '[]'::jsonb; ALTER TABLE pets ADD COLUMN medical_alerts jsonb DEFAULT '[]'::jsonb; ALTER TABLE pets ADD COLUMN preferred_cuts jsonb DEFAULT '[]'::jsonb; COMMIT;