添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

I have a Postgres Database in my django project. I have a model called enquiry

class Enquiry(models.Model):
    product_name = models.CharField(max_length = 100)
    product_id = models.ForeignKey(List, on_delete = models.CASCADE)
    user_name = models.CharField(max_length = 100)
    user_email = models.CharField(max_length = 50)
    user_address = models.CharField(max_length = 200)
    user_mobile = models.IntegerField(default=0)

And I createed a ffunction to create a new enquiry

Enquiry.objects.create(
            product_name = product_name,
            product_id = product_id,
            user_name = user_name,
            user_email = user_email,
            user_address="None",
            user_mobile = user_mobile

But I get an error

django.db.utils.DataError: integer out of range

how to solve this?

Thanks for contributing an answer to Stack Overflow!

  • Please be sure to answer the question. Provide details and share your research!

But avoid

  • Asking for help, clarification, or responding to other answers.
  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.