0

尝试使用 South for app 删除表,django-activity-stream然后重新添加它。

我用来删除表的过程:

  1. 删除了应用程序之前的所有迁移以重新开始
  2. 替换models.py为空文件
  3. python manage.py schemamigration actstream --initial
  4. python manage.py migrate actstream

但是当我查看数据库时,表仍然存在。

为什么桌子没有掉落——我做错了什么吗?

4

1 回答 1

0

我将用来删除/重新添加表的过程:

  1. 删除了应用程序之前的所有迁移以重新开始
  2. python manage.py schemamigration actstream --initial
  3. python manage.py migrate actstream --fake
  4. 用一个空文件替换了 models.py
  5. python manage.py schemamigration actstream --auto
  6. python manage.py 迁移 actstream

也许你可以省略 3 步

于 2013-07-05T13:13:51.583 回答