Skip to content

Instantly share code, notes, and snippets.

@Eth3rnit3
Created November 28, 2018 10:32
Show Gist options
  • Save Eth3rnit3/085bc5f5a2ae4a75b7510abff2b4f48d to your computer and use it in GitHub Desktop.
Save Eth3rnit3/085bc5f5a2ae4a75b7510abff2b4f48d to your computer and use it in GitHub Desktop.
'use strict';
module.exports = (sequelize, DataTypes) => {
const Company = sequelize.define('Company', {
name: DataTypes.STRING
}, {});
Company.associate = function(models) {
Company.hasMany(models.User, {as: 'employes'})
};
return Company;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment