在Django中,是否有一种简单的方法来检查所有数据库迁移是否已经运行?我找到了manage.py migrate –list,这给了我所需要的信息,但格式并不是很容易读取.
对于上下文:我有一个脚本,在数据库迁移之前不应该开始运行.由于各种原因,从运行迁移的进程发送信号将是棘手的.所以我想让我的脚本定期检查数据库,看看所有的迁移是否已经运行.
解决方法
贝壳
目前我发现的唯一简单的解决方案是运行
./manage.py showmigrations | grep '\[ \]'
这将输出一个空字符串,以防所有迁移都被应用.
然而,它与输出格式密切相关.
Python
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