mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Fixed #22248 -- Made RenameModel reversible
This commit is contained in:
parent
5617508fb9
commit
cf7a2a000e
3 changed files with 4 additions and 4 deletions
|
@ -434,8 +434,7 @@ class OperationTests(OperationTestBase):
|
|||
self.assertFKNotExists("test_rnmo_rider", ["pony_id"], ("test_rnmo_pony", "id"))
|
||||
self.assertFKExists("test_rnmo_rider", ["pony_id"], ("test_rnmo_horse", "id"))
|
||||
# And test reversal
|
||||
with connection.schema_editor() as editor:
|
||||
operation.database_backwards("test_rnmo", editor, new_state, project_state)
|
||||
self.unapply_operations("test_rnmo", project_state, [operation])
|
||||
self.assertTableExists("test_rnmo_pony")
|
||||
self.assertTableNotExists("test_rnmo_horse")
|
||||
if connection.features.supports_foreign_keys:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue