Changes between Initial Version and Version 2 of Ticket #27089


Ignore:
Timestamp:
08/18/16 22:22:55 (7 years ago)
Author:
Alexander Holmbäck
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27089

    • Property Status changed from new to assigned
    • Property Summary changed from commands/makemigrations.py runs MigrationLoader.check_consistent_history() for all database connections to Add the database alias to InconsistentMigrationHistory message
    • Property Owner changed from nobody to Tim Graham
    • Property Has patch set
    • Property Type changed from Bug to Cleanup/optimization
    • Property Triage Stage changed from Unreviewed to Accepted
  • 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