diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-06-08 12:42:19 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-06-08 12:42:19 +0200 |
| commit | c5cd9e53d7413ce960a2170eedb466073175bf80 (patch) | |
| tree | c68eaf276b864e710645a8b1d8ca5e4c3de90271 /models/participant_phases.js | |
| parent | e263eecd3951de72a67d00c26c95e9752179a39c (diff) | |
| download | orm-c5cd9e53d7413ce960a2170eedb466073175bf80.tar.gz orm-c5cd9e53d7413ce960a2170eedb466073175bf80.zip | |
import 2.7.0 table changes
Diffstat (limited to 'models/participant_phases.js')
| -rw-r--r-- | models/participant_phases.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/models/participant_phases.js b/models/participant_phases.js index dbaf1bd..c380de3 100644 --- a/models/participant_phases.js +++ b/models/participant_phases.js @@ -239,6 +239,38 @@ module.exports = function(sequelize, DataTypes) { offmeta_score: { type: "DOUBLE", allowNull: true + }, + items: { + type: DataTypes.STRING(191), + allowNull: true + }, + item_grants: { + type: DataTypes.STRING(191), + allowNull: true + }, + item_sells: { + type: DataTypes.STRING(191), + allowNull: true + }, + ability_levels: { + type: DataTypes.STRING(191), + allowNull: true + }, + ability_uses: { + type: DataTypes.STRING(191), + allowNull: true + }, + ability_damage: { + type: DataTypes.STRING(191), + allowNull: true + }, + item_uses: { + type: DataTypes.STRING(191), + allowNull: true + }, + player_damage: { + type: DataTypes.STRING(191), + allowNull: true } }, { tableName: 'participant_phases', |
