I'm getting the following error:

Environment:


Request Method: GET
Request URL: http://127.0.0.1:8000/users/friend-request/accept/7/

Django Version: 2.1
Python Version: 3.8.10
Installed Applications:
['users.apps.UsersConfig',
 'feed.apps.FeedConfig',
 'crispy_forms',
 'stdimage',
 'django.contrib.admin',
 'django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.messages',
 'django.contrib.staticfiles']
Installed Middleware:
['django.middleware.security.SecurityMiddleware',
 'django.contrib.sessions.middleware.SessionMiddleware',
 'django.middleware.common.CommonMiddleware',
 'django.middleware.csrf.CsrfViewMiddleware',
 'django.contrib.auth.middleware.AuthenticationMiddleware',
 'django.contrib.messages.middleware.MessageMiddleware',
 'django.middleware.clickjacking.XFrameOptionsMiddleware']



Traceback:

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/db/backends/utils.py"
 
in _execute
  85.                 return self.cursor.execute(sql, params)

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/db/backends/sqlite3/base.py"
 
in execute
  296.         return Database.Cursor.execute(self, query, params)

The above exception (no such table: main.users_profile__old) was the direct 
cause of the following exception:

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/core/handlers/exception.py"
 
in inner
  34.             response = get_response(request)

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/core/handlers/base.py"
 
in _get_response
  126.                 response = self.process_exception_by_middleware(e, 
request)

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/core/handlers/base.py"
 
in _get_response
  124.                 response = wrapped_callback(request, *callback_args, 
**callback_kwargs)

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/contrib/auth/decorators.py"
 
in _wrapped_view
  21.                 return view_func(request, *args, **kwargs)

File "/home/rohan/ByteWalk-master/users/views.py" in accept_friend_request
  88.     user1.profile.friends.add(user2.profile)

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/db/models/fields/related_descriptors.py"
 
in add
  926.                 self._add_items(self.source_field_name, 
self.target_field_name, *objs)

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/db/models/fields/related_descriptors.py"
 
in _add_items
  1088.                    
 self.through._default_manager.using(db).bulk_create([

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/db/models/query.py"
 
in bulk_create
  465.                 ids = self._batched_insert(objs_without_pk, fields, 
batch_size)

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/db/models/query.py"
 
in _batched_insert
  1152.                 self._insert(item, fields=fields, using=self.db)

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/db/models/query.py"
 
in _insert
  1133.         return 
query.get_compiler(using=using).execute_sql(return_id)

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/db/models/sql/compiler.py"
 
in execute_sql
  1285.                 cursor.execute(sql, params)

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/db/backends/utils.py"
 
in execute
  100.             return super().execute(sql, params)

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/db/backends/utils.py"
 
in execute
  68.         return self._execute_with_wrappers(sql, params, many=False, 
executor=self._execute)

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/db/backends/utils.py"
 
in _execute_with_wrappers
  77.         return executor(sql, params, many, context)

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/db/backends/utils.py"
 
in _execute
  85.                 return self.cursor.execute(sql, params)

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/db/utils.py"
 
in __exit__
  89.                 raise dj_exc_value.with_traceback(traceback) from 
exc_value

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/db/backends/utils.py"
 
in _execute
  85.                 return self.cursor.execute(sql, params)

File 
"/home/rohan/.local/share/virtualenvs/ByteWalk-master/lib/python3.8/site-packages/django/db/backends/sqlite3/base.py"
 
in execute
  296.         return Database.Cursor.execute(self, query, params)

Exception Type: OperationalError at /users/friend-request/accept/7/
Exception Value: no such table: main.users_profile__old

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/4e5c0f27-bc81-458e-b56c-a50779997f3en%40googlegroups.com.

Reply via email to