fix(wallet-service): update init migration memo column to TEXT

Ensure new database installations use TEXT type for memo column from the start.

🤖 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:30:07 -08:00
parent 069c549bc4
commit bbafe58e86
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ CREATE TABLE "wallet_ledger_entries" (
"balance_after" DECIMAL(20,8),
"ref_order_id" VARCHAR(100),
"ref_tx_hash" VARCHAR(100),
"memo" VARCHAR(500),
"memo" TEXT,
"payload_json" JSONB,
"created_at" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,