fix: add studentNo field to Student entity

This commit is contained in:
2026-07-05 20:35:47 +08:00
parent 194f25c3ad
commit 80ce911b88

View File

@@ -20,6 +20,8 @@ export class Student {
@Column({ length: 50 })
name: string;
@Column({ name: 'student_no', length: 30, nullable: true })
studentNo: string;
@Column({ length: 20, nullable: true })
phone: string;