migrate (fix data type) #153
This commit is contained in:
parent
45922287ea
commit
8ef8207cc0
3 changed files with 47 additions and 11 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue