Merge pull request #6943 from chrismeyersfsu/fix-6941

migrations do not call overwitten save() methods
This commit is contained in:
Chris Meyers 2017-07-07 16:52:32 -04:00 committed by GitHub
commit f2fa982970

View File

@ -13,7 +13,7 @@ def _create_fact_scan_project(Project, org):
scm_update_on_launch=True,
scm_update_cache_timeout=86400,
organization=org)
proj.save(skip_update=True)
proj.save()
return proj