summaryrefslogtreecommitdiff
path: root/models/participant_stats.js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-04-22 13:07:38 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-04-22 13:07:38 +0200
commit0e146fe767f7faca18b3c9bc63d78016721a6723 (patch)
treec935cd7d69dc4b0cb5483cd81d1d25c0b146bf41 /models/participant_stats.js
parent89ef568c88a88d0375c3765b8414cc68d900c4d4 (diff)
downloadorm-0e146fe767f7faca18b3c9bc63d78016721a6723.tar.gz
orm-0e146fe767f7faca18b3c9bc63d78016721a6723.zip
import items
Diffstat (limited to 'models/participant_stats.js')
-rw-r--r--models/participant_stats.js32
1 files changed, 16 insertions, 16 deletions
diff --git a/models/participant_stats.js b/models/participant_stats.js
index a8b01ea..6986bc7 100644
--- a/models/participant_stats.js
+++ b/models/participant_stats.js
@@ -21,22 +21,6 @@ module.exports = function(sequelize, DataTypes) {
allowNull: false,
defaultValue: "1"
},
- items: {
- type: DataTypes.STRING(255),
- allowNull: false
- },
- item_uses: {
- type: DataTypes.STRING(255),
- allowNull: false
- },
- item_grants: {
- type: DataTypes.STRING(255),
- allowNull: false
- },
- item_sells: {
- type: DataTypes.STRING(255),
- allowNull: false
- },
participant_api_id: {
type: DataTypes.CHAR(36),
allowNull: false
@@ -184,6 +168,22 @@ module.exports = function(sequelize, DataTypes) {
offmeta_score: {
type: "DOUBLE",
allowNull: true
+ },
+ items: {
+ type: DataTypes.STRING(191),
+ allowNull: true
+ },
+ item_uses: {
+ type: DataTypes.STRING(191),
+ allowNull: true
+ },
+ item_grants: {
+ type: DataTypes.STRING(191),
+ allowNull: true
+ },
+ item_sells: {
+ type: DataTypes.STRING(191),
+ allowNull: true
}
}, {
tableName: 'participant_stats',