Ensure we delete existing actors to reset private and public keys
This commit is contained in:
parent
9612b1bace
commit
e10a82060d
|
@ -7,6 +7,16 @@ import django.utils.timezone
|
||||||
import uuid
|
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):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
@ -14,6 +24,7 @@ class Migration(migrations.Migration):
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
|
migrations.RunPython(delete_system_actors, backward),
|
||||||
migrations.CreateModel(
|
migrations.CreateModel(
|
||||||
name='Follow',
|
name='Follow',
|
||||||
fields=[
|
fields=[
|
||||||
|
|
Loading…
Reference in New Issue