3c7d03547c
So new items are placed at the end of agenda. After sorting weight is updated.
21 lines
450 B
Python
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),
|
|
),
|
|
]
|