aboutsummaryrefslogtreecommitdiffstats
path: root/lib/toaster/orm/migrations/0011_delete_layersource.py
blob: 75506961a98fdf0cf9b3988f44cd220270ef2ca0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('orm', '0010_delete_layer_source_references'),
    ]

    operations = [
        migrations.DeleteModel(
            name='LayerSource',
        ),
    ]