Changes between Initial Version and Version 1 of Ticket #24812


Ignore:
Timestamp:
May 17, 2015, 7:52:42 PM (9 years ago)
Author:
Tim Graham
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24812 – Description

    initial v1  
    2323}}}
    2424There is also one warning on the stable/1.7.x branch.
     25
     26Also:
     27{{{
     28$ python -Wall runtests.py migrations.test_state
     29/home/tim/code/django/tests/migrations/test_state.py:450: RuntimeWarning: Model 'a.something' was already registered. Reloading models is not advised as it can lead to inconsistencies, most notably with related models.
     30  class A(models.Model):
     31/home/tim/code/django/tests/migrations/test_state.py:454: RuntimeWarning: Model 'b.something' was already registered. Reloading models is not advised as it can lead to inconsistencies, most notably with related models.
     32  class B(models.Model):
     33....../home/tim/code/django/tests/migrations/test_state.py:497: RuntimeWarning: Model 'a.something' was already registered. Reloading models is not advised as it can lead to inconsistencies, most notably with related models.
     34  class A(models.Model):
     35}}}
Back to Top