blob: 75506961a98fdf0cf9b3988f44cd220270ef2ca0 [file] [log] [blame]
Patrick Williamsc0f7c042017-02-23 20:41:17 -06001# -*- coding: utf-8 -*-
2from __future__ import unicode_literals
3
4from django.db import migrations, models
5
6
7class Migration(migrations.Migration):
8
9 dependencies = [
10 ('orm', '0010_delete_layer_source_references'),
11 ]
12
13 operations = [
14 migrations.DeleteModel(
15 name='LayerSource',
16 ),
17 ]