227 lines
2.3 KiB
JavaScript
227 lines
2.3 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 wallet_transactions = sequelize.define(
|
|
'wallet_transactions',
|
|
{
|
|
id: {
|
|
type: DataTypes.UUID,
|
|
defaultValue: DataTypes.UUIDV4,
|
|
primaryKey: true,
|
|
},
|
|
|
|
type: {
|
|
type: DataTypes.ENUM,
|
|
|
|
|
|
|
|
values: [
|
|
|
|
"deposit",
|
|
|
|
|
|
"fee_charge",
|
|
|
|
|
|
"adjustment"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
status: {
|
|
type: DataTypes.ENUM,
|
|
|
|
|
|
|
|
values: [
|
|
|
|
"pending",
|
|
|
|
|
|
"completed",
|
|
|
|
|
|
"failed",
|
|
|
|
|
|
"reversed"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
amount_rwf: {
|
|
type: DataTypes.DECIMAL,
|
|
|
|
|
|
|
|
},
|
|
|
|
balance_before_rwf: {
|
|
type: DataTypes.DECIMAL,
|
|
|
|
|
|
|
|
},
|
|
|
|
balance_after_rwf: {
|
|
type: DataTypes.DECIMAL,
|
|
|
|
|
|
|
|
},
|
|
|
|
fee_action: {
|
|
type: DataTypes.ENUM,
|
|
|
|
|
|
|
|
values: [
|
|
|
|
"post_daily_job",
|
|
|
|
|
|
"post_monthly_job",
|
|
|
|
|
|
"post_ad",
|
|
|
|
|
|
"boost_post",
|
|
|
|
|
|
"paid_notification",
|
|
|
|
|
|
"reveal_phone",
|
|
|
|
|
|
"like",
|
|
|
|
|
|
"comment",
|
|
|
|
|
|
"report",
|
|
|
|
|
|
"tier_purchase",
|
|
|
|
|
|
"subscription_purchase",
|
|
|
|
|
|
"link_fee"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
reference_code: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
reason: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
credited_to_admin: {
|
|
type: DataTypes.BOOLEAN,
|
|
|
|
allowNull: false,
|
|
defaultValue: false,
|
|
|
|
|
|
|
|
},
|
|
|
|
processed_at: {
|
|
type: DataTypes.DATE,
|
|
|
|
|
|
|
|
},
|
|
|
|
importHash: {
|
|
type: DataTypes.STRING(255),
|
|
allowNull: true,
|
|
unique: true,
|
|
},
|
|
},
|
|
{
|
|
timestamps: true,
|
|
paranoid: true,
|
|
freezeTableName: true,
|
|
},
|
|
);
|
|
|
|
wallet_transactions.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.wallet_transactions.belongsTo(db.users, {
|
|
as: 'user',
|
|
foreignKey: {
|
|
name: 'userId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
|
|
|
|
|
|
db.wallet_transactions.belongsTo(db.users, {
|
|
as: 'createdBy',
|
|
});
|
|
|
|
db.wallet_transactions.belongsTo(db.users, {
|
|
as: 'updatedBy',
|
|
});
|
|
};
|
|
|
|
|
|
|
|
return wallet_transactions;
|
|
};
|
|
|
|
|