Skip to content

Commit

Permalink
Missing : in "sqlite::memory:" (docs) (#13599)
Browse files Browse the repository at this point in the history
* Missing : in "sqlite::memory:"

* Update model-basics.md

Co-authored-by: Sascha Depold <sdepold@users.noreply.github.com>
  • Loading branch information
cryptosbyte and sdepold committed Oct 29, 2021
1 parent d1a2572 commit 0748fc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/manual/core-concepts/model-basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ console.log(User === sequelize.models.User); // true

```js
const { Sequelize, DataTypes, Model } = require('sequelize');
const sequelize = new Sequelize('sqlite::memory');
const sequelize = new Sequelize('sqlite::memory:');

class User extends Model {}

Expand Down

0 comments on commit 0748fc6

Please sign in to comment.