update
This commit is contained in:
@ -2,7 +2,7 @@ import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateCol
|
||||
|
||||
import { Status } from "../../types/status";
|
||||
|
||||
@Entity("hrms_faculties")
|
||||
@Entity("hrms_faculties", { schema: "hrms" })
|
||||
export class HrmsFaculty {
|
||||
@PrimaryGeneratedColumn("uuid")
|
||||
id: string;
|
||||
|
||||
@ -5,7 +5,7 @@ import { HrmsFaculty } from "./hrms_faculty";
|
||||
import { HrmsEmployee } from "./hrms_employee";
|
||||
import { HrmsStudy } from "./hrms_study";
|
||||
|
||||
@Entity("hrms_scholarships")
|
||||
@Entity("hrms_scholarships", { schema: "hrms" })
|
||||
export class HrmsScholarship {
|
||||
@PrimaryGeneratedColumn("uuid")
|
||||
id: string;
|
||||
|
||||
@ -2,7 +2,7 @@ import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateCol
|
||||
|
||||
import { Status } from "../../types/status";
|
||||
|
||||
@Entity("studies")
|
||||
@Entity("studies", { schema: "hrms" })
|
||||
export class HrmsStudy {
|
||||
@PrimaryGeneratedColumn("uuid")
|
||||
id: string;
|
||||
|
||||
@ -4,7 +4,7 @@ import { Status } from "../../types/status";
|
||||
import { HrmsFaculty } from "./hrms_faculty";
|
||||
import { HrmsEmployee } from "./hrms_employee";
|
||||
|
||||
@Entity("hrms_trainings")
|
||||
@Entity("hrms_trainings", { schema: "hrms" })
|
||||
export class HrmsTraining {
|
||||
@PrimaryGeneratedColumn("uuid")
|
||||
id: string;
|
||||
|
||||
@ -5,7 +5,7 @@ import { HrmsEmployee } from "./hrms_employee";
|
||||
import { HrmsDepartment } from "./hrms_department";
|
||||
import { HrmsTraining } from "./hrms_training";
|
||||
|
||||
@Entity("hrms_training_participants")
|
||||
@Entity("hrms_training_participants", { schema: "hrms" })
|
||||
export class HrmsTrainingParticipant {
|
||||
@PrimaryGeneratedColumn("uuid")
|
||||
id: string;
|
||||
|
||||
Reference in New Issue
Block a user