var User = sequelize.define('User', {/* ... */})var Project = sequelize.define('Project', {/* ... */})// One-way back associationsProject.belongsTo(User)/* In this example belongsTo will add an attribute UserId to the Project model! That's the only difference to hasMany.*/