Compare commits

..

9 commits

Author SHA1 Message Date
20c3d2daf1 Fix linting issues
All checks were successful
Test / build (push) Successful in 9s
2024-10-12 17:27:14 +01:00
3c4f8b8099 Fix embed not removing components after you run out 2024-10-12 17:27:14 +01:00
f98fecb774 Register button event 2024-10-12 17:27:14 +01:00
6e7e4a15ac Create sacrifice button handler 2024-10-12 17:27:14 +01:00
ee696a5111 Create keep button handler 2024-10-12 17:27:14 +01:00
f2b77e4621 WIP: Start creating keep command handler 2024-10-12 17:27:14 +01:00
837a1cd187 Create base command 2024-10-12 17:27:14 +01:00
7e1dd51e0f WIP: Start of creating multidrop command 2024-10-12 17:27:14 +01:00
f4c02d3613 Update the User entity to be nullable (#371)
All checks were successful
Deploy To Stage / build (push) Successful in 10s
Deploy To Stage / deploy (push) Successful in 17s
- Update the user entity to be nullable in the typescript side
- The migration script already did this, but if you have the `DB_SYNC` environment variable sync it then it doesn't get set to nullable

#353

Reviewed-on: #371
Reviewed-by: VylpesTester <tester@vylpes.com>
Co-authored-by: Ethan Lane <ethan@vylpes.com>
Co-committed-by: Ethan Lane <ethan@vylpes.com>
2024-10-12 17:26:13 +01:00

View file

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