Ensure we delete existing actors to reset private and public keys

This commit is contained in:
Eliot Berriot 2018-04-07 15:39:17 +02:00
parent 9612b1bace
commit e10a82060d
No known key found for this signature in database
GPG Key ID: DD6965E2476E5C27
1 changed files with 11 additions and 0 deletions

View File

@ -7,6 +7,16 @@ import django.utils.timezone
import uuid
def delete_system_actors(apps, schema_editor):
"""Revert site domain and name to default."""
Actor = apps.get_model("federation", "Actor")
Actor.objects.filter(preferred_username__in=['test', 'library']).delete()
def backward(apps, schema_editor):
pass
class Migration(migrations.Migration):
dependencies = [
@ -14,6 +24,7 @@ class Migration(migrations.Migration):
]
operations = [
migrations.RunPython(delete_system_actors, backward),
migrations.CreateModel(
name='Follow',
fields=[