Changes between Initial Version and Version 1 of Ticket #31374
- Timestamp:
- Mar 17, 2020, 2:00:17 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31374
- Property Resolution → invalid
- Property Status new → closed
- Property Summary Runtime Error unable to solve from forums/ FAQ → Runtime Error unable to solve from forums/ FAQ.
-
Ticket #31374 – Description
initial v1 1 1 I am trying to make connection with MS SQL with following settings 2 2 {{{ 3 3 DATABASES = { 4 4 'default': { … … 14 14 } 15 15 } 16 16 }}} 17 17 I had to downgrade to : pip install 'django-pyodbc-azure<1.11' which was otherwise giving me a error of No Server/DSN found. However after downgrading when I execute "python manage.py makemigrations" or python manage.py runserver. 18 18 19 19 Following is my error, which I am unable to understand. Any help would be of great help. 20 20 Thanks in advance. 21 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 21 22 23 {{{ 22 24 (venv) C:\Users\L_Sharma\PycharmProjects\Test1>python manage.py makemigrations 23 25 Traceback (most recent call last): … … 49 51 class AbstractBaseUser(models.Model): 50 52 RuntimeError: __class__ not set defining 'AbstractBaseUser' as <class 'django.contrib.auth.base_user.AbstractBaseUser'>. Was __classcell__ propagated to type.__new__? 51 52 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 53 54 53 }}}