Skip to content

Instantly share code, notes, and snippets.

@mmourafiq
Created October 14, 2012 12:40
Show Gist options
  • Save mmourafiq/3888447 to your computer and use it in GitHub Desktop.
Save mmourafiq/3888447 to your computer and use it in GitHub Desktop.
class Album(models.Model):
artist = models.ForeignKey('Musician')
name = models.CharField(max_length=100)
release_date = models.DateField()
num_stars = models.IntegerField()
class Meta:
app_label = 'myapp'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment