diff options
| author | 2018-10-20 20:09:22 +0100 | |
|---|---|---|
| committer | 2018-10-20 20:09:22 +0100 | |
| commit | 6b8022b0cbc56fa4137666c3c7a2e488df927e56 (patch) | |
| tree | cea1a68c258ce447c71181cf4e5ecbed6aba8216 /api/migrations | |
| parent | merge conflict thing (diff) | |
ficksed gramar and kept imports 2 per line
Diffstat (limited to 'api/migrations')
| -rw-r--r-- | api/migrations/0011_auto_20181020_1904.py | 18 | 
1 files changed, 18 insertions, 0 deletions
| diff --git a/api/migrations/0011_auto_20181020_1904.py b/api/migrations/0011_auto_20181020_1904.py new file mode 100644 index 00000000..bb5a6325 --- /dev/null +++ b/api/migrations/0011_auto_20181020_1904.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1.2 on 2018-10-20 19:04 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + +    dependencies = [ +        ('api', '0010_snakeidiom'), +    ] + +    operations = [ +        migrations.AlterField( +            model_name='snakeidiom', +            name='idiom', +            field=models.CharField(help_text='A saying about a snake.', max_length=140, primary_key=True, serialize=False), +        ), +    ] | 
