I uppföljning tas V4 klass och instansmetoder bort. Nu måste du göra det så här:
const Model = sequelize.define('Model', {
...
});
// Class Method
Model.associate = function (models) {
...associate the models
};
// Instance Method
Model.prototype.someMethod = function () {..}
Mer information här Sequelize v4 breaking changes