Alyx
Alyx
I agree, that must be changed & warned about. It's too bug prone to let people know about it (even worse that it's including an example of it), I'll try...
https://github.com/sequelize/sequelize/graphs/contributors is a good place to start gathering the list of contributors
Have you tried the following? ```ts new Sequelize({ dialect: 'postgres', native: true, }) ``` We use `pg.native` instead of `pg` automatically if that option is provided: https://github.com/sequelize/sequelize
Turning this into a documentation issue as I assume that's what went wrong
You can check what methods are available on your model by calling `console.dir(User.prototype)` after having called `User.belongsToMany(Profile)`
I'm still deep in the refactoring of the project for the initial release but I'll try to take the time to write a post or two to present new shiny...
> Issues related to pool will get lost with all the other noise. That's definitely fair, and I want to be clear that it's not something we want to impose...
Thanks! Even if it's not all of them that's already great :)
It would be nice to have a tool that can generate this sort of support schema: https://nodejs.org/en/about/releases/
We're migrating to a new way to define models to reduce the TypeScript boilerplate, this includes a new mechanism that determines whether the attribute is optional when creating a new...