inital commit
This commit is contained in:
24
models/Position.js
Normal file
24
models/Position.js
Normal file
@@ -0,0 +1,24 @@
|
||||
const { DataTypes } = require('sequelize');
|
||||
|
||||
module.exports = (sequelize) => {
|
||||
const Position = sequelize.define('Position', {
|
||||
caption: {
|
||||
type: DataTypes.STRING,
|
||||
allowNull: false
|
||||
}
|
||||
}, {
|
||||
tableName: 'positions',
|
||||
timestamps: false
|
||||
});
|
||||
|
||||
Position.associate = function(models) {
|
||||
Position.belongsToMany(models.ContactPerson, {
|
||||
through: models.ContactPersonPosition,
|
||||
foreignKey: 'position_id',
|
||||
otherKey: 'contact_person_id',
|
||||
as: 'contactPersons'
|
||||
});
|
||||
};
|
||||
|
||||
return Position;
|
||||
};
|
||||
Reference in New Issue
Block a user