39439-vm/backend/src/db/models/enrollments.js
2026-04-02 23:21:21 +00:00

168 lines
1.9 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 enrollments = sequelize.define(
'enrollments',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
status: {
type: DataTypes.ENUM,
values: [
"pending",
"active",
"completed",
"cancelled",
"refunded"
],
},
enrolled_at: {
type: DataTypes.DATE,
},
completed_at: {
type: DataTypes.DATE,
},
amount_paid: {
type: DataTypes.DECIMAL,
},
payment_status: {
type: DataTypes.ENUM,
values: [
"unpaid",
"paid",
"partial",
"refunded"
],
},
notes: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
enrollments.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.enrollments.belongsTo(db.course_runs, {
as: 'course_run',
foreignKey: {
name: 'course_runId',
},
constraints: false,
});
db.enrollments.belongsTo(db.users, {
as: 'student',
foreignKey: {
name: 'studentId',
},
constraints: false,
});
db.enrollments.belongsTo(db.users, {
as: 'createdBy',
});
db.enrollments.belongsTo(db.users, {
as: 'updatedBy',
});
};
return enrollments;
};