fix: activeTitle explicit varchar type for MySQL
Some checks failed
CI/CD — Build & Deploy / Build & Deploy (push) Failing after 34s
Some checks failed
CI/CD — Build & Deploy / Build & Deploy (push) Failing after 34s
This commit is contained in:
@@ -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 })
|
||||
|
||||
Reference in New Issue
Block a user