aboutsummaryrefslogtreecommitdiffstats
path: root/api/migrations/0018_messagedeletioncontext.py
diff options
context:
space:
mode:
Diffstat (limited to 'api/migrations/0018_messagedeletioncontext.py')
-rw-r--r--api/migrations/0018_messagedeletioncontext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/migrations/0018_messagedeletioncontext.py b/api/migrations/0018_messagedeletioncontext.py
index 39a4fb87..88cbab28 100644
--- a/api/migrations/0018_messagedeletioncontext.py
+++ b/api/migrations/0018_messagedeletioncontext.py
@@ -17,7 +17,7 @@ class Migration(migrations.Migration):
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('creation', models.DateTimeField(help_text='When this deletion took place.')),
- ('actor', models.ForeignKey(help_text='The original actor causing this deletion. Could be the author of a manual clean command invocation, the bot when executing automatic actions, or nothing to indicate that the bulk deletion was not issued by us.', null=True, on_delete=django.db.models.deletion.CASCADE, to='api.Member')),
+ ('actor', models.ForeignKey(help_text='The original actor causing this deletion. Could be the author of a manual clean command invocation, the bot when executing automatic actions, or nothing to indicate that the bulk deletion was not issued by us.', null=True, on_delete=django.db.models.deletion.CASCADE, to='api.User')),
],
bases=(api.models.ModelReprMixin, models.Model),
),