From 3bec5d095ae52fad8219e96a311b61330b6f9910 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Fri, 22 May 2026 03:02:20 +0000 Subject: [PATCH] fix(db): remove duplicate petSizeCategoryEnum/coatTypeEnum declarations (GRO-1522) The schema file had two sets of these enum declarations with different values. The first (stale) set broke all tests importing @groombook/db via the vitest alias, causing CI to fail and blocking the docker build job. Co-Authored-By: Paperclip --- packages/db/src/schema.ts | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/packages/db/src/schema.ts b/packages/db/src/schema.ts index bb3c8f6..313ba0c 100644 --- a/packages/db/src/schema.ts +++ b/packages/db/src/schema.ts @@ -48,22 +48,6 @@ export const clientStatusEnum = pgEnum("client_status", [ "disabled", ]); -export const petSizeCategoryEnum = pgEnum("pet_size_category", [ - "small", - "medium", - "large", - "xlarge", -]); - -export const coatTypeEnum = pgEnum("coat_type", [ - "smooth", - "double", - "wire", - "curly", - "long", - "hairless", -]); - // ─── Better-Auth Tables ────────────────────────────────────────────────────── export const user = pgTable("user", {