不要怂,就是干,撸起袖子干!

Commit 9754d31a by Aniket Panse

make it clear that there should be one sequelize instance per database

1 parent d3ac832c
Showing with 1 additions and 1 deletions
...@@ -14,7 +14,7 @@ $ npm install --save tedious // MSSQL ...@@ -14,7 +14,7 @@ $ npm install --save tedious // MSSQL
## Setting up a connection ## Setting up a connection
Sequelize will setup a connection pool on initialization so you should ideally only ever create one instance per application. Sequelize will setup a connection pool on initialization so you should ideally only ever create one instance per database.
```js ```js
var sequelize = new Sequelize('database', 'username', 'password', { var sequelize = new Sequelize('database', 'username', 'password', {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!