Requisitos -> Obervaciones, longitud 60 -> 300

This commit is contained in:
Jorge Miguel Alvarado Reyes
2024-01-17 16:35:20 -06:00
parent 95b287292f
commit 73ef0d982b
+25 -28
View File
@@ -14,52 +14,52 @@ export class Evento {
@PrimaryGeneratedColumn()
id_evento: number;
@Column({length: 70, nullable: false })
@Column({ length: 70, nullable: false })
nombre: string;
@Column({length: 15, nullable: false })
@Column({ length: 15, nullable: false })
tipo_evento: string;
@Column({length: 100,nullable: false})
organizadores: string
@Column({ length: 100, nullable: false })
organizadores: string;
@Column({length:30 ,nullable: true})
proyecto: string
@Column({length: 40,nullable: false})
modalidad: string
@Column({length: 60,nullable: false })
@Column({ length: 30, nullable: true })
proyecto: string;
@Column({ length: 40, nullable: false })
modalidad: string;
@Column({ length: 60, nullable: false })
lugar: string;
@Column({nullable: false})
@Column({ nullable: false })
cupo: number;
@Column({length: 60, nullable: false })
requisitos: string;
@Column({ length: 300, nullable: false })
observaciones: string;
@Column({type:'decimal', precision: 7, scale: 2, nullable: true })
@Column({ type: 'decimal', precision: 7, scale: 2, nullable: true })
cuota_inscripcion: number;
@Column({length: 50, nullable: true })
@Column({ length: 50, nullable: true })
patrocinador: string;
@Column({length: 40, nullable: true })
@Column({ length: 40, nullable: true })
tipo_acreditacion: string;
@Column({length: 200 ,nullable: false})
objetivo: string
@Column({ length: 200, nullable: false })
objetivo: string;
@Column({ nullable: false, type: 'datetime' })
fecha_inicio: Date;
@Column({ nullable: false, type: 'datetime' })
fecha_fin: Date;
@Column({ nullable: false, type: 'datetime' })
fecha_limite_inscripcion: Date;
@Column({length:40 ,nullable: true })
@Column({ length: 40, nullable: true })
horario: string;
@Column({ nullable: true })
@@ -71,9 +71,6 @@ export class Evento {
)
eventoParticipantes: EventoParticipante[];
@OneToMany(
() => EquipoEvento, (equipoEvento) => equipoEvento.evento
)
equipoEvento: EquipoEvento
@OneToMany(() => EquipoEvento, (equipoEvento) => equipoEvento.evento)
equipoEvento: EquipoEvento;
}