我刚刚添加了该num
对象,并尝试将其添加到我的管理员中,但出现以下错误:Exception Value:
no such column: game_riddle.num
这是课程:
class Riddle(models.Model):
"""represents a riddle, comprising a question and hints"""
world = models.ForeignKey(World)
question = models.TextField()
num = models.IntegerField()
我有一个小型数据库,最后一次添加我必须运行的对象:sqlclear
然后syncdb
如何在不清除数据库的情况下修复我的错误?