OpenSlides/openslides/agenda/migrations/0003_auto_20150904_1732.py
Oskar Hahn 6674ea85b7 Updated js-data to 2.0
Added js-data relation for the motion and agenda app

Added improved load function
2015-09-04 21:05:49 +02:00

16 lines
363 B
Python

from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('agenda', '0002_auto_20150630_0144'),
]
operations = [
migrations.AlterField(
model_name='speaker',
name='item',
field=models.ForeignKey(related_name='speakers', to='agenda.Item'),
),
]