Skip to content

Instantly share code, notes, and snippets.

@tobius
Created June 26, 2014 16:26
Show Gist options
  • Save tobius/16ad7ea2648fac90e088 to your computer and use it in GitHub Desktop.
Save tobius/16ad7ea2648fac90e088 to your computer and use it in GitHub Desktop.
example of user and role associations in sails.js
// user.js
module.exports = {
schema: true,
attributes: {
name: {
type: 'string',
required: true
},
roles: {
collection: 'role',
required: false
}
}
};
// role.js
module.exports = {
schema: true,
attributes: {
name: {
type: 'string',
required: true
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment