migrate (fix data type) #153

This commit is contained in:
Bright 2025-09-10 13:20:34 +07:00
parent 45922287ea
commit 8ef8207cc0
3 changed files with 47 additions and 11 deletions

View file

@ -256,10 +256,10 @@ export class Registry extends EntityBase {
birthdate: Date;
@Column({
type: "text",
nullable: true,
comment: "วุฒิการศึกษา",
length: 255,
default: null,
default: null
})
degrees: string;
@ -350,18 +350,18 @@ export class Registry extends EntityBase {
Educations: string;
@Column({
type: "text",
nullable: true,
comment: "ระดับศึกษา",
length: 255,
default: null,
default: null
})
educationLevels: string;
@Column({
type: "text",
nullable: true,
comment: "สาขาวิชา/ทาง",
length: 255,
default: null,
default: null
})
fields: string;
}