Skip to content

Instantly share code, notes, and snippets.

@stschindler
Created December 13, 2017 08:11
Show Gist options
  • Save stschindler/ff6d4b6decbb98adafe1c0d1af8a5c99 to your computer and use it in GitHub Desktop.
Save stschindler/ff6d4b6decbb98adafe1c0d1af8a5c99 to your computer and use it in GitHub Desktop.
Model example
# Initial model.
class Profile(models.Model):
user = models.ForeignKey(User)
# 1st change.
class Profile(models.Model):
user = models.ForeignKey(User)
first_name = models.CharField(max_length=128)
# 2nd change.
class Profile(models.Model):
user = models.ForeignKey(User)
first_name = models.CharField(max_length=128)
last_name = models.CharField(max_length=128)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment