Initial commit with core project structure

This commit is contained in:
James Graham
2020-01-30 10:31:00 +00:00
commit ab1762c180
13 changed files with 346 additions and 0 deletions

8
people/models.py Normal file
View File

@@ -0,0 +1,8 @@
from django.contrib.auth.models import AbstractUser
class User(AbstractUser):
"""
Custom user model in case we need to make changes later.
"""
pass