I\'m going to deploy my django application on DigitalOcean. Everything gone well, except following error, and my question is: where can I find source of this error, actually in
Just do nothing There are two ways :
1)Delete Your all migrations and type in your terminal:python3 manage.py makemigrations
then python3 manage.py migrate
and then runserver.
2)Just opened and changed default value from string type to integer.
In my opinion choose first option because it is safe way.
Thanks