This commit is contained in:
2026-01-02 21:13:26 +07:00
parent 9481633097
commit 21b153c8c4

View File

@ -8,9 +8,11 @@ export class HrmsScholarship {
@PrimaryGeneratedColumn("uuid") @PrimaryGeneratedColumn("uuid")
id: string; id: string;
@ManyToOne(() => HrmsEmployee, { onDelete: "NO ACTION", nullable: false }) @Column({
@JoinColumn() nullable: false,
employee: HrmsEmployee; length: 256,
})
name: string;
@Column({ @Column({
nullable: false, nullable: false,