/ myapp /的数据库错误

时间:2012-06-04 12:58:03

标签: python django postgresql psycopg2

我只在模型中包含一个选择字段

quote_template = models.CharField(_('Template'), choices=TEMPLATE, max_length=20)

现在这个错误即将到来

DatabaseError at /quote/
current transaction is aborted, commands ignored until end of transaction block

任何想法???如何解决这个问题??

1 个答案:

答案 0 :(得分:4)

向模型中添加字段不会神奇地更新现有的数据库模式 - 您必须通过和/或使用像South这样的模式迁移工具来实现。