Was using BASE_DIR in the default image path for the authentication.User model.
This is a problem because BASE_DIR may change with the host machine, which it did in my case.
Django sees the changed path and incorrectly recommends making migrations again.
Removed meaningless assets/ folder within static.
I believe its an artifact from an older Django version, but it needed to be removed to reduce clutter and use {% static %} tags.