We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0747ef8 commit c383f84Copy full SHA for c383f84
piccolo/apps/migrations/auto/diffable_table.py
@@ -51,10 +51,7 @@ def __hash__(self) -> int:
51
52
def __eq__(self, value) -> bool:
53
if isinstance(value, ColumnComparison):
54
- return (
55
- serialise_params(self.column._meta.params).params
56
- == serialise_params(value.column._meta.params).params
57
- ) and (self.column._meta.name == value.column._meta.name)
+ return self.column._meta.name == value.column._meta.name
58
return False
59
60
0 commit comments