Guest User

Untitled

a guest
Feb 16th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. from django.db import models
  2. from django.contrib.auth.models import AbstractUser
  3.  
  4. class User(AbstractUser):
  5. bio = models.TextField(max_length=500, blank=True)
  6. location = models.CharField(max_length=30, blank=True)
  7. birth_date = models.DateField(null=True, blank=True)
Add Comment
Please, Sign In to add comment