diff --git a/server/db/hotfiexes.js b/server/db/hotfiexes.js index 7821f9d..7140762 100644 --- a/server/db/hotfiexes.js +++ b/server/db/hotfiexes.js @@ -66,7 +66,7 @@ const corregir = async () => { { idStatus: 3 }, { where: { idServicio: res[i].idServicio } } ).then((res2) => { - console.log(`Se actualizo el servicio con id ${res[i]} .`); + console.log(`Se actualizo el servicio con id ${res[i].idServicio} .`); }); // } } diff --git a/server/db/tablas/Servicio.js b/server/db/tablas/Servicio.js index 2a24c8a..8f15889 100644 --- a/server/db/tablas/Servicio.js +++ b/server/db/tablas/Servicio.js @@ -71,7 +71,7 @@ Servicio.init( defaultValue: null, }, programaInterno: { - type: DataTypes.STRING(150), + type: DataTypes.STRING(250), allowNull: true, defaultValue: null, },