Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

165
Vistas
How to Update a DataTypes.ENUM datatype in Sequelize

I have this sequelize model:

  var TableName = sequelize.define(
    "TableName",
    {
      id: { type: DataTypes.INTEGER, primaryKey: true, autoIncrement: true },
      name: { type: DataTypes.STRING, allowNull: false },
      approvedTenure: {
        type: DataTypes.INTEGER,
        allowNull: false,
        defaultValue: 0,
      },
      status: {
        type: DataTypes.ENUM,
        values: ["PENDING", "YES", "NO", "DON'T KNOW"],
        allowNull: false,
        defaultValue: "PENDING",
      },
      narrative: { type: DataTypes.STRING, allowNull: false, defaultValue: "" },
    },
    {
      timestamps: true,
      tableName: "table_name",
      freezeTableName: true,
    }
  );

And when I run the following code trying to update the table:

const data = {id: 23, status: "YES", narrative: "I am good", approvedTenure: 2}

async updateTable(data) {
    return await TableName.update(
      {
        status: data.status,
        narrative: data.narrative,
        approvedTenure: data.approvedTenure,
      },
      {
        where: { id: data.id },
        returning: true,
      }
    );
  }

The table gets updated except the status column with DataTypes.ENUM as the data type. How do I go about updating the status column with the DataTypes.ENUM data type?

about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda