diff options
| author | Amos Onn <amosonn@gmail.com> | 2015-12-08 19:03:31 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-12-09 11:06:57 -0500 |
| commit | 542b7f6c50df18f2aa201cf1de81577c1bee643c (patch) | |
| tree | b0ebbe61bd478c5dd146a4a78ea0618d855f7fa4 /django | |
| parent | 890938e756247d7ea34f96cc0cc0f8fab0d62e9b (diff) | |
Fixed #25896 -- Fixed state bug in SeparateDatabaseAndState.database_backwards().
Diffstat (limited to 'django')
| -rw-r--r-- | django/db/migrations/operations/special.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/migrations/operations/special.py b/django/db/migrations/operations/special.py index e1ce9a07b5..6bbae602db 100644 --- a/django/db/migrations/operations/special.py +++ b/django/db/migrations/operations/special.py @@ -50,7 +50,7 @@ class SeparateDatabaseAndState(Operation): to_state = base_state.clone() for dbop in self.database_operations[:-(pos + 1)]: dbop.state_forwards(app_label, to_state) - from_state = base_state.clone() + from_state = to_state.clone() database_operation.state_forwards(app_label, from_state) database_operation.database_backwards(app_label, schema_editor, from_state, to_state) |
