From 6733ea8f0121d3a87a661fb13b836d42b93bb984 Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Sun, 14 Jun 2026 04:59:44 +0700 Subject: [PATCH] fix(db): add 0011_add_voice_transcription to drizzle journal Migration SQL file existed but was never registered in _journal.json, so Drizzle skipped it. Every voice recording insert failed with: PG code 42703: column "transcription" does not exist Co-Authored-By: Claude --- .../discord-gateway/drizzle/migrations/meta/_journal.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/services/discord-gateway/drizzle/migrations/meta/_journal.json b/services/discord-gateway/drizzle/migrations/meta/_journal.json index 366ae1e..0d413a5 100644 --- a/services/discord-gateway/drizzle/migrations/meta/_journal.json +++ b/services/discord-gateway/drizzle/migrations/meta/_journal.json @@ -78,6 +78,13 @@ "when": 1781390000000, "tag": "0010_add_reactions_and_edit_history", "breakpoints": true + }, + { + "idx": 11, + "version": "7", + "when": 1781388000000, + "tag": "0011_add_voice_transcription", + "breakpoints": true } ] } \ No newline at end of file