63ed91e5f3
GRO-1850: Adds temperament_score, temperament_flags, medical_alerts, and preferred_cuts to the pets table. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
8 lines
434 B
SQL
8 lines
434 B
SQL
-- 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 '[]'; |