- Author:
- sainipray
- Posted:
- March 3, 2017
- Language:
- Python
- Version:
- 1.10
- Tags:
- migration migrations
- Score:
- 0 (after 0 ratings)
It will return list of all remaining migrations
1 2 3 4 5 6 7 8 9 10 | from django.db import DEFAULT_DB_ALIAS, connections
from django.db.migrations.executor import MigrationExecutor
def get_remaining_migrations():
connection = connections[DEFAULT_DB_ALIAS]
connection.prepare_database()
executor = MigrationExecutor(connection)
targets = executor.loader.graph.leaf_nodes()
migrations= executor.migration_plan(targets)
return migrations
|
More like this
- "Magic Link" Management Command by webology 3 weeks, 5 days ago
- Closest ORM models to a latitude/longitude point by simonw 3 weeks, 5 days ago
- Log the time taken to execute each DB query by kennyx46 3 weeks, 5 days ago
- django database snippet by ItsRLuo 1 month ago
- Serialize a model instance by chriswedgwood 2 months ago
Comments
Please login first before commenting.