82 lines
1.5 KiB
JavaScript
82 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_timing_metrics = sequelize.define(
|
|
'post_timing_metrics',
|
|
{
|
|
id: {
|
|
type: DataTypes.UUID,
|
|
defaultValue: DataTypes.UUIDV4,
|
|
primaryKey: true,
|
|
},
|
|
|
|
day_of_week: {
|
|
type: DataTypes.ENUM,
|
|
|
|
values: [
|
|
'Monday',
|
|
|
|
'Tuesday',
|
|
|
|
'Wednesday',
|
|
|
|
'Thursday',
|
|
|
|
'Friday',
|
|
|
|
'Saturday',
|
|
|
|
'Sunday',
|
|
],
|
|
},
|
|
|
|
hour_of_day: {
|
|
type: DataTypes.INTEGER,
|
|
},
|
|
|
|
avg_likes: {
|
|
type: DataTypes.INTEGER,
|
|
},
|
|
|
|
importHash: {
|
|
type: DataTypes.STRING(255),
|
|
allowNull: true,
|
|
unique: true,
|
|
},
|
|
},
|
|
{
|
|
timestamps: true,
|
|
paranoid: true,
|
|
freezeTableName: true,
|
|
},
|
|
);
|
|
|
|
post_timing_metrics.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_timing_metrics.belongsTo(db.topics, {
|
|
as: 'topic',
|
|
foreignKey: {
|
|
name: 'topicId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.post_timing_metrics.belongsTo(db.users, {
|
|
as: 'createdBy',
|
|
});
|
|
|
|
db.post_timing_metrics.belongsTo(db.users, {
|
|
as: 'updatedBy',
|
|
});
|
|
};
|
|
|
|
return post_timing_metrics;
|
|
};
|