I literally don’t know how to deal with it and how it is happening I am getting this error when I run python manage.py migrate, migrations were without an error.
Mycode
models.py
JavaScript
x
16
16
1
from django.db import models
2
import uuid
3
from django.contrib.auth.models import User
4
# Create your models here.
5
6
class Orders(models.Model):
7
id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
8
user = models.ForeignKey(User, on_delete=models.CASCADE)
9
products = models.CharField(max_length=6000)
10
zip_code = models.IntegerField()
11
address = models.CharField(max_length=600)
12
city = models.CharField(max_length=600)
13
state = models.CharField(max_length=600)
14
email = models.EmailField()
15
date = models.DateTimeField(auto_now=True)
16
views.py
JavaScript
1
31
31
1
from django.core import serializers
2
3
@login_required
4
def checkout(request):
5
user = User.objects.get(pk=request.user.id)
6
cartItems = Cart.objects.filter(user=user)
7
cartJson = serializers.serialize('json', cartItems)
8
print(cartJson)
9
price = 0
10
for cartItem in cartItems:
11
price = price + cartItem.cart_item.price * cartItem.quantity
12
message = ""
13
if request.method=="POST":
14
products = request.POST['products']
15
email = request.POST['email']
16
address = request.POST['address']
17
city = request.POST['city']
18
state = request.POST['state']
19
zip_code = request.POST['zip']
20
order = Orders(products=products, user=user, email=email, address=address, city=city,
21
state=state, zip_code=zip_code)
22
order.save()
23
message = "Order Successfully Placed"
24
cartItems.delete()
25
context = {
26
'message' : message,
27
'cartItems' : cartItems,
28
'price' : price
29
}
30
return render(request, 'ecom/checkout.html', context)
31
full command line error
JavaScript
1
59
59
1
Operations to perform:
2
Apply all migrations: admin, auth, contenttypes, ecom, sessions
3
Running migrations:
4
Applying ecom.0009_ordersTraceback (most recent call last):
5
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangodbbackendsutils.py", line 82, in _execute
6
return self.cursor.execute(sql)
7
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangodbbackendssqlite3base.py", line 411, in execute
8
return Database.Cursor.execute(self, query)
9
sqlite3.OperationalError: no such function: JSON_VALID
10
11
The above exception was the direct cause of the following exception:
12
13
Traceback (most recent call last):
14
File "manage.py", line 22, in <module>
15
main()
16
File "manage.py", line 18, in main
17
execute_from_command_line(sys.argv)
18
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangocoremanagement__init__.py", line 401, in execute_from_command_line
19
utility.execute()
20
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangocoremanagement__init__.py", line 395, in execute
21
self.fetch_command(subcommand).run_from_argv(self.argv)
22
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangocoremanagementbase.py", line 330, in run_from_argv
23
self.execute(*args, **cmd_options)
24
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangocoremanagementbase.py", line 371, in execute
25
output = self.handle(*args, **options)
26
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangocoremanagementbase.py", line 85, in wrapped
27
res = handle_func(*args, **kwargs)
28
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangocoremanagementcommandsmigrate.py", line 243, in handle
29
post_migrate_state = executor.migrate(
30
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangodbmigrationsexecutor.py", line 117, in migrate
31
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
32
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangodbmigrationsexecutor.py", line 147, in _migrate_all_forwards
33
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
34
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangodbmigrationsexecutor.py", line 227, in apply_migration
35
state = migration.apply(state, schema_editor)
36
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangodbmigrationsmigration.py", line 124, in apply
37
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
38
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangodbmigrationsoperationsmodels.py", line 92, in database_forwards
39
schema_editor.create_model(model)
40
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangodbbackendsbaseschema.py", line 324, in create_model
41
self.execute(sql, params or None)
42
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangodbbackendsbaseschema.py", line 142, in execute
43
cursor.execute(sql, params)
44
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangodbbackendsutils.py", line 98, in execute
45
return super().execute(sql, params)
46
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangodbbackendsutils.py", line 66, in execute
47
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
48
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangodbbackendsutils.py", line 75, in _execute_with_wrappers
49
return executor(sql, params, many, context)
50
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangodbbackendsutils.py", line 84, in _execute
51
return self.cursor.execute(sql, params)
52
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangodbutils.py", line 90, in __exit__
53
raise dj_exc_value.with_traceback(traceback) from exc_value
54
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangodbbackendsutils.py", line 82, in _execute
55
return self.cursor.execute(sql)
56
File "C:UsersAdminAppDataLocalProgramsPythonPython38-32libsite-packagesdjangodbbackendssqlite3base.py", line 411, in execute
57
return Database.Cursor.execute(self, query)
58
django.db.utils.OperationalError: no such function: JSON_VALID
59
If you are able to solve the issue then answer and along with it also tell me any issue in my code or any bad practice in my code
If at all answerer 😂
! need any more code please ask just solve the issue
Thank You
Advertisement
Answer
In my case the issue was with the file 009_orders.py
under migrations folder
There was a JSON field ('products', models.JSONField())
Which is not supported by Sqlite3 (which I am using)