fix: activeTitle explicit varchar type for MySQL
Some checks failed
CI/CD — Build & Deploy / Build & Deploy (push) Failing after 34s

This commit is contained in:
2026-03-24 15:00:04 +01:00
parent 8ee50805ea
commit 37d5e628c0

View File

@@ -72,7 +72,7 @@ export class Character {
statPoints: number;
// Sprint 4 — Profil enrichi
@Column({ name: 'active_title', length: 100, nullable: true })
@Column({ type: 'varchar', name: 'active_title', length: 100, nullable: true })
activeTitle: string | null;
@Column({ name: 'total_gold_earned', type: 'bigint', default: 0 })