migrations do not call overwitten save() methods

related to #6941

* We don't want our special logic to trigger anyway.
This commit is contained in:
Chris Meyers 2017-07-07 16:46:38 -04:00
parent 3ae9578725
commit df572d1477

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