summaryrefslogtreecommitdiff
path: root/app/guides/migrations/0002_remove_guide_category.py
blob: 76eefa6c5d91181d4366631b01d2c4c02f23a664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Generated by Django 2.1.7 on 2019-07-04 12:05

from django.db import migrations


class Migration(migrations.Migration):

    dependencies = [
        ('guides', '0001_initial'),
    ]

    operations = [
        migrations.RemoveField(
            model_name='guide',
            name='category',
        ),
    ]