chore: update subproject commit and enhance PersonalMilestone schema

- Updated the subproject commit reference in epess-database to the latest version.
- Added milestoneOrder field to PersonalMilestoneSchema for improved milestone ordering.
- Ensured consistency in Prisma types with the latest schema changes.
This commit is contained in:
2024-12-07 18:47:43 +07:00
parent ae537d40f6
commit 7a0a404081
3 changed files with 5 additions and 2 deletions

View File

@@ -20,6 +20,9 @@ export class PersonalMilestoneSchema extends PothosSchema {
id: t.exposeID('id', { id: t.exposeID('id', {
description: 'The ID of the personal milestone.', description: 'The ID of the personal milestone.',
}), }),
milestoneOrder: t.exposeInt('milestoneOrder', {
description: 'The order of the personal milestone.',
}),
scheduleId: t.exposeString('scheduleId', { scheduleId: t.exposeString('scheduleId', {
description: 'The ID of the schedule the personal milestone belongs to.', description: 'The ID of the schedule the personal milestone belongs to.',
}), }),

File diff suppressed because one or more lines are too long