card-drop/src/database/entities/app/User.ts
Ethan Lane eb885d0ca0
All checks were successful
Test / build (push) Successful in 9s
Update the User entity to be nullable
2024-09-27 17:28:23 +01:00

34 lines
No EOL
758 B
TypeScript

import { Column, Entity } from "typeorm";
import AppBaseEntity from "../../../contracts/AppBaseEntity";
@Entity()
export default class User extends AppBaseEntity {
constructor(userId: string, currency: number) {
super();
this.Id = userId;
this.Currency = currency;
}
@Column()
Currency: number;
@Column({ nullable: true })
LastUsedDaily?: Date;
public AddCurrency(amount: number) {
this.Currency += amount;
}
public RemoveCurrency(amount: number): boolean {
if (this.Currency < amount) return false;
this.Currency -= amount;
return true;
}
public UpdateLastUsedDaily(lastUsedDaily: Date) {
this.LastUsedDaily = lastUsedDaily;
}
}