python – 检查待执行的Django迁移

前端之家收集整理的这篇文章主要介绍了python – 检查待执行的Django迁移前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Django中,是否有一种简单的方法来检查所有数据库迁移是否已经运行?我找到了manage.py migrate –list,这给了我所需要的信息,但格式并不是很容易读取.

对于上下文:我有一个脚本,在数据库迁移之前不应该开始运行.由于各种原因,从运行迁移的进程发送信号将是棘手的.所以我想让我的脚本定期检查数据库,看看所有的迁移是否已经运行.

解决方法

贝壳

目前我发现的唯一简单的解决方案是运行

./manage.py showmigrations | grep '\[ \]'

这将输出一个空字符串,以防所有迁移都被应用.

然而,它与输出格式密切相关.

Python

我检查了migrate命令的源代码,它似乎应该做的诀窍:

from django.db.migrations.executor import MigrationExecutor
from django.db import connections,DEFAULT_DB_ALIAS


def is_database_synchronized(database):
    connection = connections[database]
    connection.prepare_database()
    executor = MigrationExecutor(connection)
    targets = executor.loader.graph.leaf_nodes()
    return False if executor.migration_plan(targets) else True

# Usage example.
if is_database_synchronized(DEFAULT_DB_ALIAS):
    # All migrations have been applied.
    pass
else:
    # Unapplied migrations found.
    pass
原文链接:https://www.f2er.com/python/186390.html

猜你在找的Python相关文章