diff options
| author | Claude Paroz <claude@2xlibre.net> | 2014-10-17 14:13:59 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2014-10-17 20:20:56 +0200 |
| commit | 8d6e1afe0be0570253a508f43e2ef89ae640984e (patch) | |
| tree | c8f69b09ce491885ec64433ee6d3dba8d5d73a00 /django | |
| parent | 7ae03204ac207bee78d668952744da853a3a732b (diff) | |
Fixed #23650 -- Prevented migrate from calling checks 3 times
Thanks Ilya Baryshev for the report and Tim Graham for the review.
Diffstat (limited to 'django')
| -rw-r--r-- | django/core/management/commands/migrate.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/core/management/commands/migrate.py b/django/core/management/commands/migrate.py index aecbcd48f1..d7bc67392d 100644 --- a/django/core/management/commands/migrate.py +++ b/django/core/management/commands/migrate.py @@ -165,6 +165,7 @@ class Command(BaseCommand): database=db, reset_sequences=False, inhibit_post_migrate=True, + skip_checks=True, ) # Migrate! |
