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

@ -1,26 +0,0 @@
import { Entity, Column } from "typeorm";
import { EntityBase } from "./base/Base";
@Entity("educationMis")
export class EducationMis extends EntityBase {
@Column({
nullable: true,
length: 255,
default: null,
})
EDUCATION_CODE: string;
@Column({
nullable: true,
length: 255,
default: null,
})
EDUCATION_NAME: string;
@Column({
nullable: true,
length: 255,
default: null,
})
EDUCATION_ABB_NAME: string;
}