fix: rewardTitle explicit varchar type for MySQL
All checks were successful
CI/CD — Build & Deploy / Build & Deploy (push) Successful in 32s
All checks were successful
CI/CD — Build & Deploy / Build & Deploy (push) Successful in 32s
This commit is contained in:
@@ -33,6 +33,6 @@ export class Achievement {
|
||||
@Column({ name: 'reward_gold', default: 0 })
|
||||
rewardGold: number;
|
||||
|
||||
@Column({ name: 'reward_title', length: 100, nullable: true })
|
||||
@Column({ type: 'varchar', name: 'reward_title', length: 100, nullable: true })
|
||||
rewardTitle: string | null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user