Experiment-Collection

This commit is contained in:
Matthew Ryan Dillon 2016-02-01 15:28:02 -07:00
parent 7c1b12f833
commit 8114bb9f2c
4 changed files with 29 additions and 1 deletions

View file

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('collections_ccdb', '0001_initial'),
('experiments', '0005_alivedeadcount'),
]
operations = [
migrations.AddField(
model_name='experiment',
name='collections',
field=models.ManyToManyField(to='collections_ccdb.Collection'),
),
]