38821-vm/backend/src/db/models/post_saves.js
2026-02-27 19:28:15 +00:00

116 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 post_saves = sequelize.define(
'post_saves',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
saved_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
post_saves.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.post_saves.belongsTo(db.posts, {
as: 'post',
foreignKey: {
name: 'postId',
},
constraints: false,
});
db.post_saves.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.post_saves.belongsTo(db.save_collections, {
as: 'collection',
foreignKey: {
name: 'collectionId',
},
constraints: false,
});
db.post_saves.belongsTo(db.users, {
as: 'createdBy',
});
db.post_saves.belongsTo(db.users, {
as: 'updatedBy',
});
};
return post_saves;
};