Changes between Version 1 and Version 2 of Ticket #27933
- Timestamp:
- Mar 12, 2017, 10:10:49 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #27933 – Description
v1 v2 1 Remove foreign key b and unique_togetehrconstraint from model like following:1 Remove foreign key `b` and `unique_together` constraint from model like following: 2 2 {{{ 3 3 class A(models.Model): … … 32 32 }}} 33 33 34 However if swap the order of generated two operations within the migration AlterUniqueTogether and RemoveField, it'll work.34 However if swap the order of generated two operations within the migration `AlterUniqueTogether` and `RemoveField`, it'll work. 35 35 36 36 Is this a bug or am I using Django the wrong way?