Alyx
Alyx
Use the 👍 reaction on the initial post instead :) we can use it to sort by [most requested issue](https://github.com/sequelize/sequelize/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc)
You're using a very old version of Sequelize. Can you try on the latest stable version or on the alpha version?
I see you're still on sequelize 5, which is EOL. Looking in the source code, it looks like this is still an issue for Sequelize 6 & 7: https://github.com/sequelize/sequelize/blob/main/src/model.js#L4404 PR...
Thanks! We should delete persisted value that are Raw SQL after a call to `Model#save` or `Model#update` If your dialect supports `returning`, you can use that to replace with the...
`dialectOptions` doesn't go in `define`, that's for setting defaults for model definitions Try moving it to the top level: ```ts const sequelize = new Sequelize({ // ... other options not...
Closing after inactivity as I assume that fixed the issue
I appreciate the PR, but I don't want to add anything to findAll without properly redesigning it first, to make sure all options play nicely with each-other. `findAll` has had...
From what I can see, we don't do anything with the blob after getting it from the database, so you may have a memory problem. Too much data being put...
We don't try to determine what someone is doing by reading the query, so we can't mark the transaction as finished on our end like this We'd have to support...
You can't reassign a model to another Sequelize instance. The newer alpha throw an error if you try to do that. What can be done however is: - Making it...