Skip to content

Instantly share code, notes, and snippets.

Created June 20, 2010 19:07
Show Gist options
  • Save anonymous/446023 to your computer and use it in GitHub Desktop.
Save anonymous/446023 to your computer and use it in GitHub Desktop.
class Author(Model):
name = CharField(max_length=100)
age = CharField(max_length=100)
class Book(Model):
title = CharField(max_length=100)
author = ForeignKey(Author)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment