summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-04-08 15:49:35 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-04-08 15:49:35 +0200
commite6f3d77115cc9eb8f7c467b6f3e3712d2d859afc (patch)
treeb735f76ddfd33756a47b9bd053cfd5f5f9c90e04
parent2d8e04d1962001f4773cd8e6d019fdd9ce5eddbf (diff)
downloadorm-e6f3d77115cc9eb8f7c467b6f3e3712d2d859afc.tar.gz
orm-e6f3d77115cc9eb8f7c467b6f3e3712d2d859afc.zip
remove duplicates from participant
-rw-r--r--models/participant.js52
1 files changed, 0 insertions, 52 deletions
diff --git a/models/participant.js b/models/participant.js
index 0623578..d080b22 100644
--- a/models/participant.js
+++ b/models/participant.js
@@ -49,62 +49,14 @@ module.exports = function(sequelize, DataTypes) {
type: DataTypes.STRING(16),
allowNull: false
},
- kills: {
- type: DataTypes.INTEGER(5).UNSIGNED,
- allowNull: false
- },
- deaths: {
- type: DataTypes.INTEGER(5).UNSIGNED,
- allowNull: false
- },
- assists: {
- type: DataTypes.INTEGER(5).UNSIGNED,
- allowNull: false
- },
- farm: {
- type: "DOUBLE(6,2)",
- allowNull: false
- },
- gold: {
- type: DataTypes.INTEGER(8).UNSIGNED,
- allowNull: true
- },
- crystal_mine_captures: {
- type: DataTypes.INTEGER(5).UNSIGNED,
- allowNull: false
- },
- first_afk_time: {
- type: "DOUBLE(12,4)",
- allowNull: false
- },
- gold_mine_captures: {
- type: DataTypes.INTEGER(5).UNSIGNED,
- allowNull: false
- },
- jungle_kills: {
- type: DataTypes.INTEGER(5).UNSIGNED,
- allowNull: false
- },
karma_level: {
type: DataTypes.INTEGER(3).UNSIGNED,
allowNull: false
},
- kraken_captures: {
- type: DataTypes.INTEGER(5).UNSIGNED,
- allowNull: false
- },
level: {
type: DataTypes.INTEGER(3).UNSIGNED,
allowNull: false
},
- minion_kills: {
- type: DataTypes.INTEGER(5).UNSIGNED,
- allowNull: false
- },
- non_jungle_minion_kills: {
- type: DataTypes.INTEGER(5).UNSIGNED,
- allowNull: false
- },
skill_tier: {
type: DataTypes.INTEGER(5).UNSIGNED,
allowNull: false
@@ -113,10 +65,6 @@ module.exports = function(sequelize, DataTypes) {
type: DataTypes.STRING(40),
allowNull: false
},
- turret_captures: {
- type: DataTypes.INTEGER(5).UNSIGNED,
- allowNull: false
- },
went_afk: {
type: DataTypes.INTEGER(1),
allowNull: false