Add GroomBook logo and demo pet images #209

Merged
groombook-engineer[bot] merged 12 commits from feat/gro-395-demo-assets into main 2026-04-02 17:10:54 +00:00
2 changed files with 3 additions and 0 deletions
Showing only changes of commit a867be7d55 - Show all commits
@@ -0,0 +1,2 @@
-- Add image field to pets table for demo pet image support
ALTER TABLE "pets" ADD COLUMN "image" text;
+1
View File
@@ -135,6 +135,7 @@ export const pets = pgTable("pets", {
customFields: jsonb("custom_fields").$type<Record<string, string>>().notNull().default({}),
photoKey: text("photo_key"),
photoUploadedAt: timestamp("photo_uploaded_at"),
image: text("image"),
createdAt: timestamp("created_at").notNull().defaultNow(),
updatedAt: timestamp("updated_at").notNull().defaultNow(),
});