sequelize-auto icon indicating copy to clipboard operation
sequelize-auto copied to clipboard

Incorrect import of default value for interval

Open MichaelLeeHobbs opened this issue 3 years ago • 0 comments

Model DDL flow_interval interval default '00:00:00'::interval,

Imports as

    flow_interval: {
      type: DataTypes.INTEGER,
      allowNull: true,
      defaultValue: 00:00:00
    },

Should be

    flow_interval: {
      type: DataTypes.INTEGER,
      allowNull: true,
      defaultValue: 0
    },

MichaelLeeHobbs avatar Jun 23 '22 14:06 MichaelLeeHobbs