Skip to content

Instantly share code, notes, and snippets.

@bencleary
Last active December 4, 2017 22:49
Show Gist options
  • Save bencleary/6110879e3c4550e660e3e267db2cad2b to your computer and use it in GitHub Desktop.
Save bencleary/6110879e3c4550e660e3e267db2cad2b to your computer and use it in GitHub Desktop.
class MyCustomUser(models.Model):
# user fields
def save(self, *args, **kwargs):
super(MyCustomUser, self).save(*args, **kwargs)
profile = MyUserProfile(user=self)
profile.save()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment