From 8b39538305782c5f53f96ca9e31df027e114240c Mon Sep 17 00:00:00 2001 From: Harkamal Randhawa Date: Wed, 15 Apr 2026 16:21:37 -0600 Subject: [PATCH] add grooming for hamster, other --- .../src/main/resources/db/migration/V7__fix_service_species.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/src/main/resources/db/migration/V7__fix_service_species.sql b/backend/src/main/resources/db/migration/V7__fix_service_species.sql index ef1faf06..2e2c64a6 100644 --- a/backend/src/main/resources/db/migration/V7__fix_service_species.sql +++ b/backend/src/main/resources/db/migration/V7__fix_service_species.sql @@ -2,6 +2,8 @@ DELETE FROM service_species WHERE serviceId = 2 AND species = 'Bird'; INSERT INTO service_species (serviceId, species) VALUES (1, 'Guinea Pig'), +(1, 'Hamster'), +(1, 'Other'), (2, 'Reptile'), (2, 'Other'), (4, 'Reptile'),