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

Commit 5f7598dd by Jeff Lee

Fix typo in docs on associations

1 parent a6f5a86e
Showing with 1 additions and 1 deletions
...@@ -5,7 +5,7 @@ One-To-One associations are associations between exactly two models connected by ...@@ -5,7 +5,7 @@ One-To-One associations are associations between exactly two models connected by
BelongsTo associations are associations where the foreign key for the one-to-one relation exists on the **source model**. BelongsTo associations are associations where the foreign key for the one-to-one relation exists on the **source model**.
A simple example would be a **User** being part of a team **Team** with the foreign key on user. A simple example would be a **Player** being part of a **Team** with the foreign key on the player.
```js ```js
var Player = this.sequelize.define('Player', {/* attributes */}) var Player = this.sequelize.define('Player', {/* attributes */})
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!