diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-11-07 19:40:33 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-11-07 19:40:33 +0100 |
| commit | d4fd1779feaa283f85983e5c5f68bd40f38ed82e (patch) | |
| tree | 21689977ebfa0a02d4364d64b0785f8c749e619e | |
| parent | e53a7dabcdc5ec81b67e63371bbe247bb25831ca (diff) | |
| download | orm-d4fd1779feaa283f85983e5c5f68bd40f38ed82e.tar.gz orm-d4fd1779feaa283f85983e5c5f68bd40f38ed82e.zip | |
first Lorelei mapping
| -rw-r--r-- | mappings_source.js | 3 | ||||
| -rw-r--r-- | models/participant_phases.js | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mappings_source.js b/mappings_source.js index 12e2066..7a2413f 100644 --- a/mappings_source.js +++ b/mappings_source.js @@ -619,5 +619,6 @@ module.exports = { "DragonsEye": "Dragon's Eye", "*Item_Spellfire*": "Spellfire", "Spellfire": "Spellfire", - "Ability__FortressMinion__CritAttack": "Fortress AA" + "Ability__FortressMinion__CritAttack": "Fortress AA", + "*Lorelei*": "Lorelei" } diff --git a/models/participant_phases.js b/models/participant_phases.js index 74de38a..4b16796 100644 --- a/models/participant_phases.js +++ b/models/participant_phases.js @@ -28,6 +28,10 @@ module.exports = function(sequelize, DataTypes) { type: DataTypes.CHAR(36), allowNull: false }, + match_api_id: { + type: DataTypes.CHAR(36), + allowNull: false + }, kills: { type: DataTypes.INTEGER(5).UNSIGNED, allowNull: true |
