Skip to content

Instantly share code, notes, and snippets.

@mmourafiq
Created October 14, 2012 12:39
Show Gist options
  • Save mmourafiq/3888443 to your computer and use it in GitHub Desktop.
Save mmourafiq/3888443 to your computer and use it in GitHub Desktop.
class Musician(models.Model):
first_name = models.CharField(max_length=50)
last_name = models.CharField(max_length=50)
instrument = models.CharField(max_length=100)
class Meta:
app_label = 'myapp'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment