feat(wallet-service): add migration for memo column type change to TEXT

Change wallet_ledger_entries.memo from VARCHAR(500) to TEXT to support longer settlement memos.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-06 08:27:12 -08:00
parent bf1c8d2228
commit 069c549bc4
1 changed files with 2 additions and 0 deletions

View File

@ -0,0 +1,2 @@
-- AlterTable: Change memo column from VARCHAR(500) to TEXT
ALTER TABLE "wallet_ledger_entries" ALTER COLUMN "memo" TYPE TEXT;