Merge pull request #5633 from FinnStutzenstein/fixMigrations

Fix migrations to not use the cache
This commit is contained in:
Finn Stutzenstein 2020-10-14 08:05:01 +02:00 committed by GitHub
commit d2043f508c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ def add_permission_to_delegates(apps, schema_editor):
)
delegate.permissions.add(perm)
delegate.save()
delegate.save(skip_autoupdate=True)
class Migration(migrations.Migration):