Skip to content

Instantly share code, notes, and snippets.

@angelxmoreno
Created May 11, 2016 00:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelxmoreno/3b062c28dfe30b3bc2bf1b0681599ccb to your computer and use it in GitHub Desktop.
Save angelxmoreno/3b062c28dfe30b3bc2bf1b0681599ccb to your computer and use it in GitHub Desktop.
db.setSchema([
{
singular: 'author',
plural: 'authors',
relations: {
'books': {hasMany: 'book'}
}
},
{
singular: 'book',
plural: 'books',
relations: {
'authors': {hasMany: 'author'}
}
}
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment