Skip to content

Instantly share code, notes, and snippets.

@andrewsmedina
Created February 11, 2014 03:50
Show Gist options
  • Save andrewsmedina/8928979 to your computer and use it in GitHub Desktop.
Save andrewsmedina/8928979 to your computer and use it in GitHub Desktop.
class Post(models.Model):
pass
class Photo(models.Model):
pass
class Like(models.Model):
photo = models.ForeignKey(Photo)
post = models.ForeignKey(Post)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment