blob: 6600f2301b25ad4140e4b6fabe039d890bcd79fa (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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),
        ),
    ]
 |