gulasch-r0mstore/users/models.py

7 lines
260 B
Python

from django.db import models
from django.contrib.auth.models import AbstractUser
class User(AbstractUser):
github = models.CharField('github handle', max_length=128, blank=True)
twitter = models.CharField('twitter handle', max_length=128, blank=True)