sequelize-auto
sequelize-auto copied to clipboard
Incorrect import of default value for interval
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
},