初学Django,Django 修改models.py 字段后执行makemigrations报错,报错信息:

<class 'test2.admin.AccountAdmin'>: (admin.E108) The value of 'list_display[3]' refers to 'account_admin', which is not a callable, an attribute of 'AccountAdmin', or an attribute or method on 'test2.Account'.
<class 'test2.admin.AccountAdmin'>: (admin.E108) The value of 'list_display[4]' refers to 'password_admin', which is not a callable, an attribute of 'AccountAdmin', or an attribute or method on 'test2.Account'.

第一遇到有点手足无措,搜索了一波,在这里找到了答案。

原来是我在admin.py中定义了AccountAdmin,

wKiom1kvjpyiN5gaAAAXT5DGR_Y118.jpg-wh_50

修改list_display中的account_admin,password_admin 即可解决,其实报错中的信息已经很明确了。