[Answer]-How to store registration value in to database?

1👍

This is a string:

  plate = request.POST.get("plate_id", ' ')

Convert it to an integer before saving it. Your DB expects an integer.

Leave a comment