Changes between Initial Version and Version 2 of Ticket #27089


Ignore:
Timestamp:
Aug 18, 2016, 5:22:55 PM (8 years ago)
Author:
Alexander Holmbäck
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27089

    • Property Has patch set
    • Property Owner changed from nobody to Tim Graham
    • Property Triage Stage UnreviewedAccepted
    • Property Status newassigned
    • Property Summary commands/makemigrations.py runs MigrationLoader.check_consistent_history() for all database connectionsAdd the database alias to InconsistentMigrationHistory message
    • Property Type BugCleanup/optimization
  • Ticket #27089 – Description

    initial v2  
    22
    33{{{
    4 for db in connection:
     4for db in connections:
    55    connection = connection[db]
    66    if connection.settings_dict['ENGINE'] != 'django.db.backends.dummy':
Back to Top