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

Commit 69898710 by Robert Ing

Update getting-started.md

1 parent 6401eba4
Showing with 2 additions and 3 deletions
...@@ -15,7 +15,7 @@ $ npm install --save tedious // MSSQL ...@@ -15,7 +15,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 on instance per application. Sequelize will setup a connection pool on initialization so you should ideally only ever create one instance per application.
```js ```js
var sequelize = new Sequelize('database', 'username', 'password', { var sequelize = new Sequelize('database', 'username', 'password', {
...@@ -80,4 +80,4 @@ var Post = sequelize.define('user', {}, { ...@@ -80,4 +80,4 @@ var Post = sequelize.define('user', {}, {
timestamps: true // timestamps will now be true timestamps: true // timestamps will now be true
}); });
``` ```
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!