btw di akhir schema.ts, jangan lupa untuk export type buat nantinya dipake di Frontend, khususnya dipake untuk melakukan penyesuaian tipe data setelah di-fetch dari Backend 😃, kaya gini :
// export types
export type Student = typeof students.$inferSelect;
export type Course= typeof courses.$inferSelect;
export type CourseEnrollment= typeof courseEnrollments.$inferSelect;
https://github.com/AlfianHanifFY/mini-project-be-information/blob/e0959b9f1cfcb7e592cf2895d620040d0d213b25/src/server/db/schema.ts#L1-L98
btw di akhir
schema.ts
, jangan lupa untuk export type buat nantinya dipake di Frontend, khususnya dipake untuk melakukan penyesuaian tipe data setelah di-fetch dari Backend 😃, kaya gini :