Skip to content

Commit b69aafb

Browse files
authored
Not exactly sure why this is necessary but was getting warnings from the migrate command (#287)
1 parent 268a92c commit b69aafb

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 5.2.10 on 2026-02-14 22:16
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('activitypub', '0002_historicalnote_historicallike_historicalperson_and_more'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='person',
15+
name='following',
16+
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'),
17+
),
18+
]

0 commit comments

Comments
 (0)