Fixed TypeORM DataTypeNotSupportedError for "Object" type in PostgreSQL.
## Issues Fixed
1. **user-service/UserORM**
- fingerprint: varchar(255)
- phone: varchar(20)
- nickname: varchar(100)
- avatar: varchar(500)
2. **payment-service/PaymentORM**
- transactionId: varchar(255)
- currency: varchar(10)
- expiresAt: timestamptz
- paidAt: timestamptz
3. **conversation-service/MessageORM**
- inputTokens: int
- outputTokens: int
## Root Cause
@Column({ nullable: true }) without explicit `type` defaults to Object,
which PostgreSQL doesn't support.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
|
||
|---|---|---|
| .. | ||
| admin-client | ||
| services | ||
| shared | ||
| web-client | ||