mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-06 07:09:56 +02:00
Ensure we delete existing actors to reset private and public keys
This commit is contained in:
parent
9612b1bace
commit
e10a82060d
1 changed files with 11 additions and 0 deletions
|
@ -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=[
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue