sequelize-sscce
sequelize-sscce copied to clipboard
Base repository for creating and sharing Sequelize SSCCEs
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.
Prueba
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...