tools_ledger.ts 1.1 KB
/* jshint indent: 2 */

module.exports = function(sequelize:any, DataTypes:any) {
  return sequelize.define('tools_ledger', {
    id: {
      type: DataTypes.INTEGER(11),
      allowNull: false,
      primaryKey: true,
      autoIncrement: true
    },
    user_id: {
      type: DataTypes.INTEGER(11),
      allowNull: false,
    },
    created_at: {
      type: DataTypes.DATE,
      allowNull: true,
    },
    lottery_id: {
      type: DataTypes.INTEGER(11),
      allowNull: false
    },
    memo: {
      type: DataTypes.STRING(50),
      allowNull: true
    },
    bet_issue: {
      type: DataTypes.STRING(50),
      allowNull: true
    },
    bet_time: {
      type: DataTypes.DATE,
      allowNull: false
    },
    bet_money: {
      type: DataTypes.DECIMAL,
      allowNull: false
    },
    bet_win_money: {
      type: DataTypes.DECIMAL,
      allowNull: true
    },
    bet_gg: {
      type: DataTypes.STRING(50),
      allowNull: true
    },
    bet_competition: {
      type: DataTypes.STRING(50),
      allowNull: true
    },

  }, {
    tableName: 'tools_ledger'
  });
};