summaryrefslogtreecommitdiff
path: root/model.js
diff options
context:
space:
mode:
Diffstat (limited to 'model.js')
-rw-r--r--model.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/model.js b/model.js
index 51fd700..26b2cda 100644
--- a/model.js
+++ b/model.js
@@ -18,7 +18,6 @@ module.exports = (seq, Seq) => {
Participant.belongsTo(Roster, { foreignKey: "roster_api_id", targetKey: "api_id" });
Participant.belongsTo(Player, { foreignKey: "player_api_id", targetKey: "api_id" });
ParticipantItemUse.belongsTo(Participant, { foreignKey: "participant_api_id", targetKey: "api_id" });
- ParticipantItemUse.hasOne(Item);
PlayerExt.belongsTo(Player, { foreignKey: "player_api_id", targetKey: "api_id" });
return {Match, Roster, Participant, ParticipantExt, ParticipantItemUse, Player, PlayerExt, Asset, Item};