目前我正在使用运行良好的默认管理门户。然后在models.py中我尝试添加一个字段,如下所示:
class MyModel(models.Model):
# new field is 'info'
info = models.CharField(max_length=100)
MyModel 已经在上面的代码中成功定义和使用了,我只想添加一个字段。我重新运行同步
python manage.py syncdb
Creating tables ...
Installing custom SQL ...
Installing indexes ...
Installed 0 object(s) from 0 fixture(s)
但是,当我尝试使用该界面时,Django 会引发错误
column myproject_mymodel.info does not exist
我究竟做错了什么?