diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-10-01 11:55:17 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-10-01 11:55:17 +0200 |
| commit | 3e6b3f0e825b0d396c09d872fee4171def49ea0c (patch) | |
| tree | 514f54413d85838f919ed515620de505f15908e1 | |
| parent | d687c974122ca8ac539b95f63fd2b5a4eb9f6567 (diff) | |
| download | orm-3e6b3f0e825b0d396c09d872fee4171def49ea0c.tar.gz orm-3e6b3f0e825b0d396c09d872fee4171def49ea0c.zip | |
reimport
| -rw-r--r-- | models/global_point.js | 10 | ||||
| -rw-r--r-- | models/global_point_phase.js | 6 |
2 files changed, 14 insertions, 2 deletions
diff --git a/models/global_point.js b/models/global_point.js index 8bbde9c..4bb5de5 100644 --- a/models/global_point.js +++ b/models/global_point.js @@ -172,7 +172,7 @@ module.exports = function(sequelize, DataTypes) { type: DataTypes.BIGINT, allowNull: false }, - item_039_use: { + item_034_use: { type: DataTypes.BIGINT, allowNull: false }, @@ -196,6 +196,10 @@ module.exports = function(sequelize, DataTypes) { type: DataTypes.BIGINT, allowNull: false }, + item_053_use: { + type: DataTypes.BIGINT, + allowNull: false + }, item_057_use: { type: DataTypes.BIGINT, allowNull: false @@ -223,6 +227,10 @@ module.exports = function(sequelize, DataTypes) { item_071_use: { type: DataTypes.BIGINT, allowNull: false + }, + item_072_use: { + type: DataTypes.BIGINT, + allowNull: true } }, { tableName: 'global_point', diff --git a/models/global_point_phase.js b/models/global_point_phase.js index 6be342a..952a814 100644 --- a/models/global_point_phase.js +++ b/models/global_point_phase.js @@ -292,7 +292,7 @@ module.exports = function(sequelize, DataTypes) { type: DataTypes.BIGINT, allowNull: false }, - item_039_use: { + item_034_use: { type: DataTypes.BIGINT, allowNull: false }, @@ -316,6 +316,10 @@ module.exports = function(sequelize, DataTypes) { type: DataTypes.BIGINT, allowNull: false }, + item_053_use: { + type: DataTypes.BIGINT, + allowNull: false + }, item_057_use: { type: DataTypes.BIGINT, allowNull: false |
