diff options
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', |
