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 perkara_pihak1 = sequelize.define( 'perkara_pihak1', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, nama: { type: DataTypes.TEXT, }, alamat: { type: DataTypes.TEXT, }, keterangan: { type: DataTypes.TEXT, }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); perkara_pihak1.associate = (db) => { db.perkara_pihak1.belongsTo(db.users, { as: 'createdBy', }); db.perkara_pihak1.belongsTo(db.users, { as: 'updatedBy', }); }; return perkara_pihak1; };