add package dependencies

This commit is contained in:
Laura Klünder 2016-09-04 14:32:10 +02:00
parent 470815c859
commit fd5f402d95
3 changed files with 50 additions and 0 deletions

View file

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9.9 on 2016-09-04 12:20
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('mapdata', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='package',
name='depends',
field=models.ManyToManyField(to='mapdata.Package'),
),
]