Changes between Initial Version and Version 1 of Ticket #24729
- Timestamp:
- Apr 29, 2015, 4:34:08 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24729 – Description
initial v1 1 1 In 1.8 only, the test db is flushed before running migrations. But when using --keepdb the migrations won't be run, therefore any app which has data migrations will effectively be broken. For most non-trivial apps, their test setups won't even run. 2 2 3 In 1.9, this issue is already handled because the flushing the test db has been removed anyway. 3 In 1.9, this issue is already handled because flushing the test db has been removed anyway. 4 5 https://github.com/django/django/pull/4582