chore: update user schema and database reference

- Removed the 'packageValue' field from the User schema to streamline user data representation.
- Updated the subproject reference in the epess-database to the latest commit for consistency in project dependencies.
- These changes enhance the clarity of the user schema and ensure alignment with the latest database structure.
This commit is contained in:
2024-12-10 17:23:07 +07:00
parent c8f4abd670
commit e1cfd55502
3 changed files with 2 additions and 6 deletions

View File

@@ -45,10 +45,6 @@ export class UserSchema extends PothosSchema {
bankAccountNumber: t.exposeString('bankAccountNumber', { bankAccountNumber: t.exposeString('bankAccountNumber', {
description: 'The bank account number of the user.', description: 'The bank account number of the user.',
}), }),
packageValue: t.exposeFloat('packageValue', {
description: 'The package value of the user.',
nullable: true,
}),
role: t.exposeString('role', { role: t.exposeString('role', {
nullable: true, nullable: true,
description: 'The role of the user.', description: 'The role of the user.',

File diff suppressed because one or more lines are too long