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:
parent
bf1c8d2228
commit
069c549bc4
|
|
@ -0,0 +1,2 @@
|
|||
-- AlterTable: Change memo column from VARCHAR(500) to TEXT
|
||||
ALTER TABLE "wallet_ledger_entries" ALTER COLUMN "memo" TYPE TEXT;
|
||||
Loading…
Reference in New Issue