Skip to content

Instantly share code, notes, and snippets.

@ngerakines
Created September 17, 2014 16:10
Show Gist options
  • Save ngerakines/9502c3f522bbec15c1a8 to your computer and use it in GitHub Desktop.
Save ngerakines/9502c3f522bbec15c1a8 to your computer and use it in GitHub Desktop.
module.exports = function(sequelize, DataTypes) {
var Task = sequelize.define('Task', {
title: DataTypes.STRING
}, {
classMethods: {
associate: function(models) {
Task.belongsTo(models.User)
}
}
})
return Task
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment