如何卸载 Django Evolution?
我将其安装在我的开发项目中。我想删除它以及它在我的数据库和 django 应用程序中的任何痕迹,更不用说我的 python 安装了。我发现它并没有完全满足我的需要,但那是另一个话题,我要搬到南方。
我可以删除 django 数据库中的进化表,并将其从应用程序设置中删除吗?或者还有更多的事情吗?
I installed it in my dev project. I would like to remove it and any trace of it in my database and my django app, not to mention my python install. I found it didn't quite do what I needed, but that's another topic, and I'm moving to South.
Can I just delete the evolution tables in my django db, and remove it from the app settings? Or is there more to it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第 1 部分:删除 python Egg(例如使用 easy-install 和 python 2.5 安装时)
并删除该 Egg(如果存在)(在我的情况下不存在)。
查看鸡蛋的安装位置,最后将其删除:
第 2 部分:从 django 中删除 django_evolution
从 INSTALLED_APPS 中删除 django_evolution,即打开您的 settings.py 并删除带有 'django_evolution' 的行
部分3:清理数据库
要删除django_evolution表:
登录到您的数据库(以mysql为例):
Part 1: Remove the python egg (example when installed with easy-install and python 2.5)
and delete the egg if it is there (was not there in my case).
see where the egg was installed, and finally remove it:
Part 2: remove django_evolution from django
delete django_evolution from INSTALLED_APPS, i.e., open your settings.py and delete the line with 'django_evolution'
Part 3: clean up DB
To delete the django_evolution table:
Log in to your db (example with mysql):