What is the max size of 'max_length' in Django?

前端 未结 4 1769
名媛妹妹
名媛妹妹 2021-02-01 00:31

This is my model:

class Position(models.Model):
    map = models.ForeignKey(Map,primary_key=True)
    #members=models.CharField(max_length=200)
    LatLng = mode         


        
4条回答
  •  臣服心动
    2021-02-01 00:35

    That depends on the database backend. The Django DB Docs will tell you, that max_length=255 is guaranteed to work always.

    If you need something of the amount you've specified in your question, I'd suggest to use a TextField.

提交回复
热议问题