Create concept of currency in the database #209

Merged
Vylpes merged 4 commits from feature/200-currency-db into develop 2024-04-26 18:35:03 +01:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 6c2233790e - Show all commits

View file

@ -12,10 +12,10 @@ export default class User extends AppBaseEntity {
} }
@Column() @Column()
UserId: string; UserId: string;
@Column() @Column()
Currency: number; Currency: number;
public UpdateCurrency(currency: number) { public UpdateCurrency(currency: number) {
this.Currency = currency; this.Currency = currency;

View file

@ -9,7 +9,7 @@ export class User1713289062969 implements MigrationInterface {
], queryRunner); ], queryRunner);
} }
public async down(queryRunner: QueryRunner): Promise<void> { public async down(): Promise<void> {
} }
} }