File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ def drop_constraints(self):
53
53
logger .debug (f"Dropping constraints from { self .model .__name__ } " )
54
54
with connection .schema_editor () as schema_editor :
55
55
# Remove any "unique_together" constraints
56
- # NOTE: "unique_together" may be depreciated in the future
56
+ # NOTE: "unique_together" may be deprecated in the future
57
57
if getattr (self .model ._meta , 'unique_together' , False ):
58
58
logger .debug (
59
59
"Dropping unique_together of {}" .format (
@@ -101,7 +101,7 @@ def restore_constraints(self):
101
101
logger .debug (f"Adding constraints to { self .model .__name__ } " )
102
102
with connection .schema_editor () as schema_editor :
103
103
# Add any "unique_together" contraints from the database
104
- # NOTE: "unique_together" may be depreciated in the future
104
+ # NOTE: "unique_together" may be deprecated in the future
105
105
if getattr (self .model ._meta , 'unique_together' , False ):
106
106
logger .debug (
107
107
"Adding unique_together of {}" .format (
You can’t perform that action at this time.
0 commit comments