Django - Increase FileField length

前端 未结 2 1994
一个人的身影
一个人的身影 2021-01-03 23:27

I\'m trying to store a file using a FileField, but the path of the destination of the file is larger than 100 characters. How can I increase the number of allowed characters

2条回答
  •  感情败类
    2021-01-03 23:59

    I think your code was cool if you added max_length=255 to FileField, only you forgot to update it in your database (makemigrations -> migrate)

提交回复
热议问题