Changes between Initial Version and Version 1 of Ticket #31834
- Timestamp:
- Jul 27, 2020, 2:54:53 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31834 – Description
initial v1 1 1 Somewhat similar to #26624, but forward sqlmigrate, reproduced on Django 3.0.8 and Postgres 10.x. 2 2 3 If a model witha unique_together of3 If a model has a unique_together of 4 4 5 5 {{{ … … 9 9 }}} 10 10 11 and then thisbecomes11 and it becomes 12 12 13 13 {{{ … … 17 17 }}} 18 18 19 , although the makemigrations command successfully generates the corresponding AlterUniqueTogether() operation, the operation cannot be inspected with the sqlmigrate command.19 , although the makemigrations command successfully generates a new migration with the corresponding AlterUniqueTogether() operation, the migration cannot be inspected with the sqlmigrate command. 20 20 21 21