33982/backend/src/db/models/projects.js
2025-09-10 01:18:05 +00:00

106 lines
2.1 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 projects = sequelize.define(
'projects',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
title: {
type: DataTypes.TEXT,
},
description: {
type: DataTypes.TEXT,
},
funding_goal: {
type: DataTypes.DECIMAL,
},
status: {
type: DataTypes.ENUM,
values: ['Pending', 'Approved', 'Funded', 'Completed'],
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
projects.associate = (db) => {
db.projects.belongsToMany(db.users, {
as: 'backers',
foreignKey: {
name: 'projects_backersId',
},
constraints: false,
through: 'projectsBackersUsers',
});
db.projects.belongsToMany(db.users, {
as: 'backers_filter',
foreignKey: {
name: 'projects_backersId',
},
constraints: false,
through: 'projectsBackersUsers',
});
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.projects.hasMany(db.campaigns, {
as: 'campaigns_project',
foreignKey: {
name: 'projectId',
},
constraints: false,
});
//end loop
db.projects.belongsTo(db.users, {
as: 'creator',
foreignKey: {
name: 'creatorId',
},
constraints: false,
});
db.projects.belongsTo(db.organizations, {
as: 'organizations',
foreignKey: {
name: 'organizationsId',
},
constraints: false,
});
db.projects.belongsTo(db.users, {
as: 'createdBy',
});
db.projects.belongsTo(db.users, {
as: 'updatedBy',
});
};
return projects;
};