fix(identity-service): extend avatar_url column to 2000 chars

SVG avatars can be up to 745+ characters, exceeding the previous 500 char limit.

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-07 01:31:44 -08:00
parent 34fc008f9d
commit 742cc21395
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ model UserAccount {
phoneNumber String? @unique @map("phone_number") @db.VarChar(20)
nickname String @db.VarChar(100)
avatarUrl String? @map("avatar_url") @db.VarChar(500)
avatarUrl String? @map("avatar_url") @db.VarChar(2000)
inviterSequence BigInt? @map("inviter_sequence")
referralCode String @unique @map("referral_code") @db.VarChar(10)