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

Commit fbaa70e8 by Mick Hansen

[ci skip] fix missing closing code

1 parent 75c7eeda
Showing with 1 additions and 1 deletions
...@@ -49,7 +49,7 @@ Team.hasOne(Game, {as: 'HomeTeam', foreignKey : 'homeTeamId'}); ...@@ -49,7 +49,7 @@ Team.hasOne(Game, {as: 'HomeTeam', foreignKey : 'homeTeamId'});
Team.hasOne(Game, {as: 'AwayTeam', foreignKey : 'awayTeamId'}); Team.hasOne(Game, {as: 'AwayTeam', foreignKey : 'awayTeamId'});
Game.belongsTo(Team); Game.belongsTo(Team);
  ```
To get the association working the other way around (so from `User` to `Project`), it's necessary to do this: To get the association working the other way around (so from `User` to `Project`), it's necessary to do this:
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!