aboutsummaryrefslogtreecommitdiffstats
path: root/api/migrations/0011_auto_20181020_1904.py
blob: bb5a63251aec773777991fb4fb6441ed441d8f33 (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.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),
        ),
    ]