Skip to content

Instantly share code, notes, and snippets.

@hellsan631
Created March 8, 2016 23:30
Show Gist options
  • Save hellsan631/a524a694c37b5a39cc32 to your computer and use it in GitHub Desktop.
Save hellsan631/a524a694c37b5a39cc32 to your computer and use it in GitHub Desktop.
Gamer.findOrCreate({username:'whiplash'})
.then(function(user){
return Gamelog.create({gamerId: user.id});
})
then.(function(gamelog){
return Game.findOrCreate({title: 'Star Citizen'})
.then(function(game){
gamelog.gameId = game.id;
gamelog.save();
});
})
.catch(console.log);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment