一. 问题描述
(1)python django代码中的model,整数这种字段,如果后面跟着(max_length=10)
则有警告信息如下:
(fields.W122) 'max_length' is ignored when used with IntegerField
HINT: Remove 'max_length' from field
(2)如果删除,则报错:
'unum' is an invalid keyword argument for this function"
二.解决方案:
字段后面,还是添加上 (max_length=10) 这种后缀,忽略警告信息