variables ids faltantes

This commit is contained in:
xXpuma99Xx
2022-10-24 07:52:28 -05:00
parent 45bec187f9
commit 866dd0cd42
14 changed files with 79 additions and 9 deletions
+3
View File
@@ -20,6 +20,9 @@ export class Modulo {
@Column({ type: String, nullable: false, length: 30 })
modulo: string;
@Column({ type: Number, nullable: true })
id_institucion: number;
@ManyToOne(() => Institucion, (institucion) => institucion.modulos, {
eager: true,
})