Update the User entity to be nullable
All checks were successful
Test / build (push) Successful in 9s
All checks were successful
Test / build (push) Successful in 9s
This commit is contained in:
parent
768f64b5ee
commit
eb885d0ca0
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ export default class User extends AppBaseEntity {
|
|||
@Column()
|
||||
Currency: number;
|
||||
|
||||
@Column()
|
||||
@Column({ nullable: true })
|
||||
LastUsedDaily?: Date;
|
||||
|
||||
public AddCurrency(amount: number) {
|
||||
|
|
Loading…
Reference in a new issue