fixing Module not found error

should fix #4069
This commit is contained in:
Jochen Saalfeld 2019-01-10 11:51:44 +01:00
parent 44846da4cd
commit c9df66ffb9
No known key found for this signature in database
GPG Key ID: 8ACD4E8264B67DF4
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ def move_submitters_to_own_model(apps, schema_editor):
continue # Skip the anonymous
submitter = Submitter(user=user, motion=motion, weight=weight)
submitter.save(force_insert=True)
submitter.save(force_insert=True, skip_autoupdate=True)
weight += 1