Antes eu tinha o mesmo problema, e resolvi quando entendi o funcionamento das configurações do Sequelize.
Direto ao ponto!
Suponha que temos dois objetos:Person e Pai
var Person = sequelize.define('Person', {
name: Sequelize.STRING
});
var Father = sequelize.define('Father', {
age: Sequelize.STRING,
//The magic start here
personId: {
type: Sequelize.INTEGER,
references: 'persons', // <<< Note, its table's name, not object name
referencesKey: 'id' // <<< Note, its a column name
}
});
Person.hasMany(Father); // Set one to many relationship
Talvez te ajude
Editar:
Você pode ler isso para entender melhor:
http://docs.sequelizejs.com/manual/tutorial/associations .html#chaves-estrangeiras