有没有一些方法可以清理 Django 中的所有模型(清理数据库中的表)?

发布于 2024-09-09 08:16:15 字数 78 浏览 1 评论 0原文

有没有一些方法可以清理 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

哭了丶谁疼 2024-09-16 08:16:15

reset 子命令django-adminmanage.py 将删除并重新创建提供的应用程序的表。例如,python manage.py reset auth 将删除并重新创建 django.contrib.auth 应用程序的表。

The reset subcommand of django-admin or manage.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.

汐鸠 2024-09-16 08:16:15

转到主应用程序的目录并使用manage.py:

python ./manage.py --help
python ./manage.py sqlclear --help

将其用于应用程序。

Go to your main app's directory and use manage.py:

python ./manage.py --help
python ./manage.py sqlclear --help

Use that for apps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文