summaryrefslogtreecommitdiff
path: root/models/participant_phases.js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-12-10 13:41:23 +0100
committerschneefux <schneefux+commit@schneefux.xyz>2017-12-10 13:41:23 +0100
commit3e04856b75dcdd5cbb9499d17dd7a30245c06698 (patch)
tree53cc55c2dcd0edad6e7dfe7f56ca9896c87064a4 /models/participant_phases.js
parentf68df5b90b37456b14b82dfbba6d240766d27c4a (diff)
downloadorm-3e04856b75dcdd5cbb9499d17dd7a30245c06698.tar.gz
orm-3e04856b75dcdd5cbb9499d17dd7a30245c06698.zip
reimport
Diffstat (limited to 'models/participant_phases.js')
-rw-r--r--models/participant_phases.js32
1 files changed, 16 insertions, 16 deletions
diff --git a/models/participant_phases.js b/models/participant_phases.js
index 4b16796..361acbf 100644
--- a/models/participant_phases.js
+++ b/models/participant_phases.js
@@ -256,6 +256,22 @@ module.exports = function(sequelize, DataTypes) {
type: DataTypes.INTEGER(11),
allowNull: true
},
+ items: {
+ type: "BLOB",
+ allowNull: false
+ },
+ item_grants: {
+ type: "BLOB",
+ allowNull: false
+ },
+ item_grants_inorder: {
+ type: "BLOB",
+ allowNull: true
+ },
+ item_sells: {
+ type: "BLOB",
+ allowNull: false
+ },
ability_a_use: {
type: DataTypes.INTEGER(5).UNSIGNED,
allowNull: false
@@ -375,22 +391,6 @@ module.exports = function(sequelize, DataTypes) {
heal_rcvd_healed_other: {
type: "DOUBLE",
allowNull: true
- },
- item_grants: {
- type: "BLOB",
- allowNull: true
- },
- item_grants_inorder: {
- type: "BLOB",
- allowNull: true
- },
- item_sells: {
- type: "BLOB",
- allowNull: true
- },
- items: {
- type: "BLOB",
- allowNull: true
}
}, {
tableName: 'participant_phases',