DEV Community

Discussion on: Modifying an existing sequelize migration

Collapse
 
anayooleru profile image
Anayo Samson Oleru

Hi @vam, here is an example.

To add a Boolean column(Model):

is_activated: {
  type: DataTypes.BOOLEAN,
  defaultValue: false,
},

To insert a value into the column:

By default, it will always be False, but if you want to change it to true, pass true as the value. I mean a boolean true

example:

User.create({
is_activated: true
});