OpenSlides/openslides/agenda/migrations/0003_auto_20160127_2136.py
Emanuel Schuetze 3c7d03547c Set default of item.weigth to 10000.
So new items are placed at the end of agenda.
After sorting weight is updated.
2016-01-27 22:16:46 +01:00

21 lines
450 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.9.1 on 2016-01-27 21:36
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('agenda', '0002_auto_20160122_2318'),
]
operations = [
migrations.AlterField(
model_name='item',
name='weight',
field=models.IntegerField(default=10000),
),
]