diff --git a/backend/migrations/019_categories_photos.sql b/backend/migrations/019_categories_photos.sql new file mode 100644 index 0000000..8cf1bec --- /dev/null +++ b/backend/migrations/019_categories_photos.sql @@ -0,0 +1,2 @@ +-- Add photos column to room_categories if it doesn't exist +ALTER TABLE room_categories ADD COLUMN IF NOT EXISTS photos TEXT[] NOT NULL DEFAULT '{}';