Opened 9 months ago
Last modified 9 months ago
#35268 closed Uncategorized
Error in Django Migration in PostgreSQL : UnicodeDecodeError during 'python manage.py migrate' — at Version 1
Reported by: | Azim1900 | Owned by: | nobody |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | 5.0 |
Severity: | Normal | Keywords: | PostgreSQL |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
When running the command 'python manage.py migrate' in a Django project, a UnicodeDecodeError occurs during the migration process.
The error trace indicates that the issue is related to decoding a byte (0xbb) at position 79, and the problematic code is within the PostgreSQL database backend connection setup. The error originates from the 'psycopg2' library, and the specific context points to a Unicode decoding problem in the 'data_handler.py' file. The error disrupts the migration process and prevents the successful execution of the command.
Here is also Database Setting in my Django Project :
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'Databank',
'USER': 'user',
'PASSWORD': '123456',
'HOST': 'localhost',
'PORT': '5432',
'OPTIONS': {
'client_encoding': 'UTF8',
}
}
}