--
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 django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/c3646848-03f9-459a-99ad-7b71e7348799%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I solve it with this two lines code in my models:
from thirdparty.models import ParentModelClass
ParentModelClass._meta.get_field('default_price').max_digits = 9then makemigrations && migrate
voila it work, but i don't know any downside using this tricks.
Hope it will help others with similar situation as well.