mirror of
https://github.com/django/django.git
synced 2025-10-29 00:26:07 +00:00
Initial version of MigrationOptimizer and tests
This commit is contained in:
@@ -29,6 +29,14 @@ class AddField(Operation):
|
||||
def describe(self):
|
||||
return "Add field %s to %s" % (self.name, self.model_name)
|
||||
|
||||
def __eq__(self, other):
|
||||
return (
|
||||
(self.__class__ == other.__class__) and
|
||||
(self.name == other.name) and
|
||||
(self.model_name == other.model_name) and
|
||||
(self.field.deconstruct()[1:] == other.field.deconstruct()[1:])
|
||||
)
|
||||
|
||||
|
||||
class RemoveField(Operation):
|
||||
"""
|
||||
@@ -92,6 +100,14 @@ class AlterField(Operation):
|
||||
def describe(self):
|
||||
return "Alter field %s on %s" % (self.name, self.model_name)
|
||||
|
||||
def __eq__(self, other):
|
||||
return (
|
||||
(self.__class__ == other.__class__) and
|
||||
(self.name == other.name) and
|
||||
(self.model_name == other.model_name) and
|
||||
(self.field.deconstruct()[1:] == other.field.deconstruct()[1:])
|
||||
)
|
||||
|
||||
|
||||
class RenameField(Operation):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user