Update the User entity to be nullable
All checks were successful
Test / build (push) Successful in 9s

This commit is contained in:
Ethan Lane 2024-09-27 17:28:23 +01:00
parent 768f64b5ee
commit eb885d0ca0

View file

@ -13,7 +13,7 @@ export default class User extends AppBaseEntity {
@Column() @Column()
Currency: number; Currency: number;
@Column() @Column({ nullable: true })
LastUsedDaily?: Date; LastUsedDaily?: Date;
public AddCurrency(amount: number) { public AddCurrency(amount: number) {