This commit is contained in:
Your Name
2025-04-02 11:50:08 -06:00
parent bf7c0e93a8
commit a1f52daa8a
26 changed files with 1109 additions and 42 deletions
+2 -2
View File
@@ -25,8 +25,8 @@ export class Pregunta {
@Column()
id_tipo_pregunta: number;
@Column({ nullable: true })
id_opcion_dependiente: number;
@Column({ type: 'int', nullable: true })
id_opcion_dependiente?: number;
@OneToMany(() => SeccionPregunta, seccionPregunta => seccionPregunta.pregunta)
seccionPreguntas: SeccionPregunta[];