I want to allow one user to own(create) multiple things. I’ve tried this in settings.py:
…
slug = models.SlugField (unique = False)
user = models.OneToOneField(User, blank=True, null=True)
…
but that broke the app.
Should I remove OneToOneField?