diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-10 18:43:05 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-10 18:43:05 +0200 |
| commit | c853a79a1eeeba7670cf1509225dc0e7959a7189 (patch) | |
| tree | bd78097efc033b9fad9b9002a4797af3dc77442e | |
| parent | 912fbc20b1800a01dbdb61fc01d56392dbf15a7a (diff) | |
| download | orm-c853a79a1eeeba7670cf1509225dc0e7959a7189.tar.gz orm-c853a79a1eeeba7670cf1509225dc0e7959a7189.zip | |
export Gamer
| -rw-r--r-- | model.js | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -25,7 +25,10 @@ module.exports = (seq, Seq) => { // stats aggregations PlayerPoint = seq.import("./models/player_point.js"), - GlobalPoint = seq.import("./models/global_point.js"); + GlobalPoint = seq.import("./models/global_point.js"), + + // registered special users + Gamer = seq.import("./models/gamer.js"); Roster.belongsTo(Match, { foreignKey: "match_api_id", targetKey: "api_id" }); @@ -44,6 +47,7 @@ module.exports = (seq, Seq) => { Item, Hero, Series, GameMode, Role, Filter, ItemParticipant, ParticipantStats, - PlayerPoint, GlobalPoint + PlayerPoint, GlobalPoint, + Gamer }; }; |
