Experiment-Collection
This commit is contained in:
parent
7c1b12f833
commit
8114bb9f2c
4 changed files with 29 additions and 1 deletions
20
ccdb/experiments/migrations/0006_experiment_collections.py
Normal file
20
ccdb/experiments/migrations/0006_experiment_collections.py
Normal 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'),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue