[Django]-Django.db.utils.DataError: numeric field overflow – django

6👍

The error message indicates that you have existing numbers longer than 8 digits (10-2) in your table. You might try modifying the offending rows if possible, or increase the max_digits to allow larger numbers.

👤Selcuk

Leave a comment