summaryrefslogtreecommitdiff
path: root/app/jrnl/migrations/0027_entry_country_slug.py
blob: 45604978208b0606bb6cef1d28f35934dfcb8630 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 2.1.5 on 2019-02-15 21:37

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('jrnl', '0026_entry_country_name'),
    ]

    operations = [
        migrations.AddField(
            model_name='entry',
            name='country_slug',
            field=models.CharField(blank=True, max_length=200, null=True),
        ),
    ]