sequelize-auto
sequelize-auto copied to clipboard
Incorrect import
DDL providers integer[] default ARRAY []::integer[] not null,
Import
providers: {
type: DataTypes.ARRAY(DataTypes.INTEGER),
allowNull: false,
defaultValue: [ARRAY[]]
},
Expected
providers: {
type: DataTypes.ARRAY(DataTypes.INTEGER),
allowNull: false,
defaultValue: []
},
I'm not sure what the original DB Dev's where trying to do with the default.