aboutsummaryrefslogtreecommitdiffstats
path: root/api/migrations/0022_infraction_remove_note.py
diff options
context:
space:
mode:
authorGravatar ImportErr <[email protected]>2018-12-08 11:55:40 +0000
committerGravatar ImportErr <[email protected]>2018-12-08 11:55:40 +0000
commit65b3381cfd35949ef457d5f794f83dbd3a4bd45c (patch)
tree1867912cf613498a4ca56fe3a0ef8660876157e3 /api/migrations/0022_infraction_remove_note.py
parentRenamed class in test_users (diff)
parentBump minimum DRF version to `3.9.0`. (diff)
Fixed merge conflicts
Diffstat (limited to 'api/migrations/0022_infraction_remove_note.py')
-rw-r--r--api/migrations/0022_infraction_remove_note.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/api/migrations/0022_infraction_remove_note.py b/api/migrations/0022_infraction_remove_note.py
new file mode 100644
index 00000000..eba84610
--- /dev/null
+++ b/api/migrations/0022_infraction_remove_note.py
@@ -0,0 +1,18 @@
+# Generated by Django 2.1.3 on 2018-11-21 21:07
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('api', '0021_infraction_reason_null'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='infraction',
+ name='type',
+ field=models.CharField(choices=[('warning', 'Warning'), ('mute', 'Mute'), ('ban', 'Ban'), ('kick', 'Kick'), ('superstar', 'Superstar')], help_text='The type of the infraction.', max_length=9),
+ ),
+ ]