mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed #23844 -- Used topological sort for migration operation dependency resolution.
This removes the concept of equality between operations to guarantee
compatilibity with Python 3.
Python 3 requires equality to result in identical object hashes. It's
impossible to implement a unique hash that preserves equality as
operations such as field creation depend on being able to accept
arbitrary dicts that cannot be hashed reliably.
Thanks Klaas van Schelven for the original patch in
13d613f800
.
This commit is contained in:
parent
53908c1f93
commit
21e21c7bc2
11 changed files with 197 additions and 88 deletions
|
@ -5,6 +5,13 @@ class TestOperation(Operation):
|
|||
def __init__(self):
|
||||
pass
|
||||
|
||||
def deconstruct(self):
|
||||
return (
|
||||
self.__class__.__name__,
|
||||
[],
|
||||
{}
|
||||
)
|
||||
|
||||
@property
|
||||
def reversible(self):
|
||||
return True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue