Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

164
Visualizações
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 à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda