有没有一些方法可以清理 Django 中的所有模型(清理数据库中的表)?
有没有一些方法可以清理 Django 中的所有模型(清理数据库中的表)? 我无法通过阅读官方文档来理解,因为我不是母语人士,但我正在尽力而为。
Is there some method to clean all model in Django (clean table in database)?
I cant understand by reading official documentation because I'm not a native speaker, but I'm doing my best.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
reset
子命令django-admin
或manage.py
将删除并重新创建提供的应用程序的表。例如,python manage.py reset auth 将删除并重新创建 django.contrib.auth 应用程序的表。The
reset
subcommand ofdjango-admin
ormanage.py
will drop and recreate the tables for the supplied apps. For example,python manage.py reset auth
will drop and recreate the tables for the django.contrib.auth application.转到主应用程序的目录并使用manage.py:
将其用于应用程序。
Go to your main app's directory and use manage.py:
Use that for apps.