From a25fb83a2a052338df0414d424b70f1e7b5bfe31 Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Thu, 11 Jun 2026 15:25:13 -0700 Subject: [PATCH] fix invalid migration --- go/migrations/000017_human_avatar.down.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/migrations/000017_human_avatar.down.sql b/go/migrations/000017_human_avatar.down.sql index 3eaffc5..7720db9 100644 --- a/go/migrations/000017_human_avatar.down.sql +++ b/go/migrations/000017_human_avatar.down.sql @@ -1,6 +1,6 @@ BEGIN; ALTER TABLE humans - DROP COLUMN IF EXISTS avatar_object_id, + DROP COLUMN IF EXISTS avatar_object_id; COMMIT;