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

Base repository for creating and sharing Sequelize SSCCEs

Results 109 sequelize-sscce issues
Sort by recently updated
recently updated
newest added

The return type of Model.create is `void` if the option `ignoreDuplicates` is `true` or `returning` is `false`. https://github.com/sequelize/sequelize/blob/56bb1d6ef9827f604d7bcef945abb7e213f2322d/types/lib/model.d.ts#L1982 But the method actually returns an instance.

In this scenario there is a table with underscore columns that does not have a primary key. When a model is saved, the generated sql for the update tries to...