gulasch-r0mstore/users/models.py

7 lines
246 B
Python
Raw Normal View History

2017-02-01 22:05:48 +01:00
from django.db import models
from django.contrib.auth.models import AbstractUser
class User(AbstractUser):
2017-04-30 01:27:26 +02:00
github = models.CharField('github', max_length=128, blank=True)
twitter = models.CharField('twitter', max_length=128, blank=True)