aboutsummaryrefslogtreecommitdiffstats
path: root/layerindex/migrations/0011_source.py
blob: 515e71cf28012dd8c68660e20324e5991faba9da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('layerindex', '0010_add_dependencies'),
    ]

    operations = [
        migrations.CreateModel(
            name='Source',
            fields=[
                ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
                ('url', models.CharField(max_length=255)),
                ('recipe', models.ForeignKey(to='layerindex.Recipe')),
            ],
        ),
    ]