julianwachholz / django-guest-user

A Django app that allows visitors to interact with your site as a guest user without requiring registration.
https://django-guest-user.readthedocs.io/
MIT License
74 stars 10 forks source link

Include dangling migration for default ordering #8

Closed LucasPickering closed 1 year ago

LucasPickering commented 1 year ago

First off, thanks for this package! As I was using it, I noticed that running ./manage.py makemigrations in my project generates a migration for guest_user. So I just ran makemigrations here.

julianwachholz commented 1 year ago

Thank you for reporting this @LucasPickering! I incorporated this by modifying the initial migration file, because this change does not touch the database. This means one less migration for project maintainers to check when updating. :)