pre registro sin subir achrivo

This commit is contained in:
2020-11-17 10:12:30 -06:00
parent 8f0aa05388
commit b96fabb078
8 changed files with 74 additions and 25 deletions
+9 -9
View File
@@ -22,11 +22,11 @@ Servicio.init(
allowNull: false,
},
nombre: {
type: DataTypes.STRING(30),
type: DataTypes.STRING(40),
allowNull: false,
},
correo: {
type: DataTypes.STRING(30),
type: DataTypes.STRING(80),
allowNull: false,
},
telefono: {
@@ -35,7 +35,7 @@ Servicio.init(
defaultValue: null,
},
direccion: {
type: DataTypes.STRING(30),
type: DataTypes.STRING(150),
allowNull: true,
defaultValue: null,
},
@@ -54,30 +54,30 @@ Servicio.init(
defaultValue: null,
},
carpeta: {
type: DataTypes.STRING(30),
type: DataTypes.STRING(50),
allowNull: false,
},
cartaAceptacion: {
type: DataTypes.STRING(30),
type: DataTypes.STRING(50),
allowNull: false,
},
cartaTermino: {
type: DataTypes.STRING(30),
type: DataTypes.STRING(50),
allowNull: true,
defaultValue: null,
},
informeGlobal: {
type: DataTypes.STRING(30),
type: DataTypes.STRING(50),
allowNull: true,
defaultValue: null,
},
programaInterno: {
type: DataTypes.STRING(30),
type: DataTypes.STRING(80),
allowNull: true,
defaultValue: null,
},
profesor: {
type: DataTypes.STRING(30),
type: DataTypes.STRING(50),
allowNull: true,
defaultValue: null,
},