summaryrefslogtreecommitdiff
path: root/models/participant_phases.js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-11-02 20:16:57 +0100
committerschneefux <schneefux+commit@schneefux.xyz>2017-11-02 20:16:57 +0100
commitc7c5dfb953451232e78a2ef1c6278f7046ab08b7 (patch)
tree48ce1a4bd3503aa8b03c762846a096b0e0d90e99 /models/participant_phases.js
parent82364853cab5583831360c8a00c705dd90dda24a (diff)
downloadorm-c7c5dfb953451232e78a2ef1c6278f7046ab08b7.tar.gz
orm-c7c5dfb953451232e78a2ef1c6278f7046ab08b7.zip
reimport
Diffstat (limited to 'models/participant_phases.js')
-rw-r--r--models/participant_phases.js28
1 files changed, 16 insertions, 12 deletions
diff --git a/models/participant_phases.js b/models/participant_phases.js
index 4ada1db..dad65dd 100644
--- a/models/participant_phases.js
+++ b/models/participant_phases.js
@@ -252,18 +252,6 @@ module.exports = function(sequelize, DataTypes) {
type: DataTypes.INTEGER(11),
allowNull: true
},
- items: {
- type: "BLOB",
- allowNull: false
- },
- item_grants: {
- type: "BLOB",
- allowNull: false
- },
- item_sells: {
- type: "BLOB",
- allowNull: false
- },
ability_a_use: {
type: DataTypes.INTEGER(5).UNSIGNED,
allowNull: false
@@ -363,6 +351,22 @@ module.exports = function(sequelize, DataTypes) {
heal_rcvd_healed_other: {
type: "DOUBLE",
allowNull: true
+ },
+ item_grants: {
+ type: "BLOB",
+ allowNull: true
+ },
+ item_sells: {
+ type: "BLOB",
+ allowNull: true
+ },
+ items: {
+ type: "BLOB",
+ allowNull: true
+ },
+ item_grants_indorder: {
+ type: "BLOB",
+ allowNull: false
}
}, {
tableName: 'participant_phases',