diff options
author | 2018-12-08 11:55:40 +0000 | |
---|---|---|
committer | 2018-12-08 11:55:40 +0000 | |
commit | 65b3381cfd35949ef457d5f794f83dbd3a4bd45c (patch) | |
tree | 1867912cf613498a4ca56fe3a0ef8660876157e3 /api/migrations/0021_infraction_reason_null.py | |
parent | Renamed class in test_users (diff) | |
parent | Bump minimum DRF version to `3.9.0`. (diff) |
Fixed merge conflicts
Diffstat (limited to 'api/migrations/0021_infraction_reason_null.py')
-rw-r--r-- | api/migrations/0021_infraction_reason_null.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/api/migrations/0021_infraction_reason_null.py b/api/migrations/0021_infraction_reason_null.py new file mode 100644 index 00000000..6600f230 --- /dev/null +++ b/api/migrations/0021_infraction_reason_null.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1.3 on 2018-11-21 00:50 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api', '0020_infraction'), + ] + + operations = [ + migrations.AlterField( + model_name='infraction', + name='reason', + field=models.TextField(help_text='The reason for the infraction.', null=True), + ), + ] |