migrate (fix data type) #153
This commit is contained in:
parent
45922287ea
commit
8ef8207cc0
3 changed files with 47 additions and 11 deletions
|
|
@ -248,9 +248,9 @@ export class RegistryEmployee extends EntityBase {
|
|||
birthdate: Date;
|
||||
|
||||
@Column({
|
||||
type: "text",
|
||||
nullable: true,
|
||||
comment: "วุฒิการศึกษา",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
degrees: string;
|
||||
|
|
@ -313,18 +313,18 @@ export class RegistryEmployee 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