add package dependencies
This commit is contained in:
parent
470815c859
commit
fd5f402d95
3 changed files with 50 additions and 0 deletions
20
src/c3nav/mapdata/migrations/0002_package_depends.py
Normal file
20
src/c3nav/mapdata/migrations/0002_package_depends.py
Normal 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'),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue