Pedro Augusto de Paula Barbosa
Pedro Augusto de Paula Barbosa
Hello, I did not understand. > At the moment, they do not work at all for `Model.findAll()` and works buggy for `Model.update()`. Can you clarify this with a [MVCE](https://stackoverflow.com/help/minimal-reproducible-example)? Also,...
Have you considered instantiating sequelize twice? ``` const sequelize1 = new Sequelize("postgres://abc:[email protected]:5432/db1"); const sequelize2 = new Sequelize("postgres://abc:[email protected]:5432/db2"); ``` I never tested this, but I would guess it should work...
Actually I didn't really understand your problem... What is the matter of having the same models?
> The database schema are the same so I would need the same models to apply I don't see why this prevents you from using what I suggested: > Have...
Ah, I get it now... I don't know how to help then, unfortunately... I actually don't have experience with using Sequelize with multiple connections (I tried to help with general...
@thebigredgeek @andrewzuk What is the use case for having `createdAt` and `updatedAt` fields that are manually created, instead of automatically created with the `timestamps` option?
Hi @hkmarques, what is the current status on this?
I am a bit confused still. 1. Are you waiting for sushantdhiman to say something, or waiting for something else to happen? 2. Is your issue dependent on #5708? 3....
Hello, thanks for the report! > [X] Yes, I have the time but I don't know how to start, I would need guidance. Nice, what kind of guidance do you...
Hi @himynameisdave, may I give a suggestion? One thing that seems quite unexpected to me is that: > the false-positive seems specifically triggered by a `CallExpression` argument. The reason for...