docker compose front, modulo de validacion de preguntas, crud de participante, get participantes por evento y evento por participantes

This commit is contained in:
Your Name
2025-04-04 14:39:04 -06:00
parent bc07c307cf
commit e5c6f611f4
24 changed files with 979 additions and 74 deletions
+3
View File
@@ -28,6 +28,9 @@ export class Pregunta {
@Column({ type: 'int', nullable: true })
id_opcion_dependiente?: number;
@Column({ nullable: true })
validacion?: string;
@OneToMany(() => SeccionPregunta, seccionPregunta => seccionPregunta.pregunta)
seccionPreguntas: SeccionPregunta[];