aboutsummaryrefslogtreecommitdiffstats
path: root/api/migrations/0018_messagedeletioncontext.py
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2019-04-05 12:11:31 +0100
committerGravatar Gareth Coles <[email protected]>2019-04-05 12:11:31 +0100
commitebda74029355ce3236ca9266acde40fd40329df7 (patch)
treeaba491f902c874328c88b8e7ccb9772b5414c17f /api/migrations/0018_messagedeletioncontext.py
parentSet `harakiri = 30`. (diff)
[#176] Redo project layout
Diffstat (limited to 'api/migrations/0018_messagedeletioncontext.py')
-rw-r--r--api/migrations/0018_messagedeletioncontext.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/api/migrations/0018_messagedeletioncontext.py b/api/migrations/0018_messagedeletioncontext.py
deleted file mode 100644
index 88cbab28..00000000
--- a/api/migrations/0018_messagedeletioncontext.py
+++ /dev/null
@@ -1,24 +0,0 @@
-# Generated by Django 2.1.1 on 2018-11-18 20:12
-
-import api.models
-from django.db import migrations, models
-import django.db.models.deletion
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('api', '0017_auto_20181029_1921'),
- ]
-
- operations = [
- migrations.CreateModel(
- name='MessageDeletionContext',
- 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.User')),
- ],
- bases=(api.models.ModelReprMixin, models.Model),
- ),
- ]