edit file migrate

This commit is contained in:
mamoss 2025-08-05 22:24:45 +07:00
parent 0fbb5b928e
commit f77c8467d6
60 changed files with 137 additions and 13701 deletions

View file

@ -0,0 +1,69 @@
import { Entity, Column, PrimaryGeneratedColumn } from "typeorm";
@Entity("HR_INSIGNIA")
export class HR_INSIGNIA {
@Column({
nullable: true,
type: "text",
default: null,
})
CIT: string;
@PrimaryGeneratedColumn()
id!: number;
@Column({
nullable: true,
type: "text",
default: null,
})
DECORATION_DATE: string;
@Column({
nullable: true,
type: "text",
default: null,
})
CREATE_DATE: string;
@Column({
nullable: true,
type: "text",
default: null,
})
PERMISSION_DATE: string;
@Column({
nullable: true,
type: "text",
default: null,
})
BOOK: string;
@Column({
nullable: true,
type: "text",
default: null,
})
PART: string;
@Column({
nullable: true,
type: "text",
default: null,
})
PAGE: string;
@Column({
nullable: true,
type: "text",
default: null,
})
ISSUE: string;
@Column({
nullable: true,
type: "text",
default: null,
})
DECORATIONS_NAME: string;
}