2025-07-12 10:32:10 +00:00

80 lines
1.5 KiB
JavaScript

const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function (sequelize, DataTypes) {
const bets = sequelize.define(
'bets',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
amount: {
type: DataTypes.DECIMAL,
},
status: {
type: DataTypes.ENUM,
values: ['pending', 'won', 'lost'],
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
bets.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.bets.belongsTo(db.users, {
as: 'bettor',
foreignKey: {
name: 'bettorId',
},
constraints: false,
});
db.bets.belongsTo(db.matches, {
as: 'match',
foreignKey: {
name: 'matchId',
},
constraints: false,
});
db.bets.belongsTo(db.clubs, {
as: 'clubs',
foreignKey: {
name: 'clubsId',
},
constraints: false,
});
db.bets.belongsTo(db.users, {
as: 'createdBy',
});
db.bets.belongsTo(db.users, {
as: 'updatedBy',
});
};
return bets;
};