From 4e264899f063ea0b7a67340e94abfb789e3630f9 Mon Sep 17 00:00:00 2001 From: Matthew Foster Walsh <15671892+mfosterw@users.noreply.github.com> Date: Mon, 16 Feb 2026 10:49:11 -0700 Subject: [PATCH] Not exactly sure why this is necessary but was getting warnings from the migrate command --- .../migrations/0003_alter_person_following.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 democrasite/activitypub/migrations/0003_alter_person_following.py diff --git a/democrasite/activitypub/migrations/0003_alter_person_following.py b/democrasite/activitypub/migrations/0003_alter_person_following.py new file mode 100644 index 00000000..028c119a --- /dev/null +++ b/democrasite/activitypub/migrations/0003_alter_person_following.py @@ -0,0 +1,18 @@ +# Generated by Django 5.2.10 on 2026-02-14 22:16 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('activitypub', '0002_historicalnote_historicallike_historicalperson_and_more'), + ] + + operations = [ + migrations.AlterField( + model_name='person', + name='following', + field=models.ManyToManyField(blank=True, help_text='People this person is following', related_name='followers', through='activitypub.Follow', through_fields=('follower', 'following'), to='activitypub.person'), + ), + ]