You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ py manage.py makemigrations
SystemCheckError: System check identified some issues:
ERRORS:
authentication.User.created_by: (fields.E304) Reverse accessor for 'authentication.User.created_by' clashes with reverse accessor for 'authentication.User.updated_by'.
HINT: Add or change a related_name argument to the definition for 'authentication.User.created_by' or 'authentication.User.updated_by'.
authentication.User.updated_by: (fields.E304) Reverse accessor for 'authentication.User.updated_by' clashes with reverse accessor for 'authentication.User.created_by'.
HINT: Add or change a related_name argument to the definition for 'authentication.User.updated_by' or 'authentication.User.created_by'.
$ py manage.py makemigrations
E:\django\venv\lib\site-packages\django_currentuser\db\models\fields.py:57: UserWarning: You passed
an argument to CurrentUserField that will be ignored. Avoid args and following kwargs: default, null, to.
warnings.warn(self.warning)
Migrations for 'authentication':
authentication\migrations\0001_initial.py
- Create model User
- Create model Permission
- Create model Role
- Add field role to user
- Add field updated_by to user
Please help me to fix this warning and errors
The text was updated successfully, but these errors were encountered:
According to github's REAEME.md
On Custom User Model
it gives me this error
Then I Try to Solve like the following
Then it gives me following warning
Please help me to fix this warning and errors
The text was updated successfully, but these errors were encountered: