summaryrefslogtreecommitdiff
path: root/models/participant_phases.js
blob: d6b0d9664dac2292a3830dcf00799a71d4d53ece (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/* jshint indent: 2 */

module.exports = function(sequelize, DataTypes) {
  return sequelize.define('participant_phases', {
    id: {
      type: DataTypes.INTEGER(10).UNSIGNED,
      allowNull: false,
      primaryKey: true,
      autoIncrement: true
    },
    created_at: {
      type: DataTypes.TIME,
      allowNull: true
    },
    updated_at: {
      type: DataTypes.TIME,
      allowNull: true
    },
    start: {
      type: DataTypes.INTEGER(5).UNSIGNED,
      allowNull: false
    },
    end: {
      type: DataTypes.INTEGER(5).UNSIGNED,
      allowNull: false
    },
    participant_api_id: {
      type: DataTypes.CHAR(36),
      allowNull: false
    },
    dmg_true: {
      type: "DOUBLE",
      allowNull: true
    },
    dmg_dealt: {
      type: "DOUBLE",
      allowNull: true
    },
    dmg_rcvd_dealt: {
      type: "DOUBLE",
      allowNull: true
    },
    dmg_rcvd_true: {
      type: "DOUBLE",
      allowNull: true
    },
    draft_position: {
      type: DataTypes.INTEGER(11),
      allowNull: true
    },
    ban: {
      type: DataTypes.INTEGER(11),
      allowNull: true
    },
    pick: {
      type: DataTypes.INTEGER(11),
      allowNull: true
    },
    heal_heal: {
      type: "DOUBLE",
      allowNull: true
    },
    heal_healed: {
      type: "DOUBLE",
      allowNull: true
    },
    heal_rcvd_heal: {
      type: "DOUBLE",
      allowNull: true
    },
    heal_rcvd_healed: {
      type: "DOUBLE",
      allowNull: true
    },
    heal_rcvd_vamp: {
      type: "DOUBLE",
      allowNull: true
    }
  }, {
    tableName: 'participant_phases',
    timestamps: false,
    underscored: true,
    freezeTableName: true
  });
};