Use allauth basics #2

Merged
decibyte merged 4 commits from feature/login-and-stuff into master 2018-06-23 13:25:38 +00:00
Showing only changes of commit 9ea4b827f4 - Show all commits

View file

@ -2,4 +2,4 @@ from django.db import models
class Profile(models.Model):
user = models.OneToOneField('auth.User')
user = models.OneToOneField('auth.User', on_delete=models.CASCADE)