Django 模型中的新字段不会显示在管理界面或模型表单中
我在我的一个应用程序中创建了一个模型,该模型运行良好。但是,我需要添加一个新字段。我这样做了,并使用 manage.py reset
删除表并再次添加它们。这个过程很顺利——新字段出现在数据库中。但是,我无法让该字段显示在管理界面中,也无法显示在我创建的自定义模型表单中。因为我没有给它一个默认值(并且不想也不应该需要),所以我无法使用任何一种方法向数据库中添加行。有什么想法吗?
模型片段:
use_balance = models.BooleanField()
I've created a model in one of my apps which works fine. However, I needed to add a new field. I did this, and used manage.py reset <appname>
to drop the tables and add them again. This process went fine - the new field appears in the database. However, I can't get the field to show up in the admin interface, nor in the custom model form I've created. Because I haven't given it a default value (and don't want to, nor should I need to) I can't use either method to add a row into the database. Any ideas?
Model snippet:
use_balance = models.BooleanField()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你重新启动你的服务器了吗?
Have you restarted your server?
无论如何,您是否忘记更新您的 ModelAdmin 定义?
By any chance, did you forget to update your ModelAdmin definitions?