Only delete the ContentTypes and Permissions once, not the loop (#4623)

This commit is contained in:
Trenton H 2023-11-17 12:24:49 -08:00 committed by GitHub
parent 00aa6c1f6a
commit a94e5d2e47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -118,10 +118,10 @@ class Command(BaseCommand):
# Fill up the database with whatever is in the manifest
try:
with transaction.atomic():
# delete these since pk can change, re-created from import
ContentType.objects.all().delete()
Permission.objects.all().delete()
for manifest_path in manifest_paths:
# delete these since pk can change, re-created from import
ContentType.objects.all().delete()
Permission.objects.all().delete()
call_command("loaddata", manifest_path)
except (FieldDoesNotExist, DeserializationError, IntegrityError) as e:
self.stdout.write(self.style.ERROR("Database import failed"))