bornhack-website/src/info/migrations/0002_auto_20161228_2312.py

37 lines
1.2 KiB
Python
Raw Normal View History

2016-12-28 23:15:13 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.4 on 2016-12-28 23:12
2017-01-30 11:16:07 +00:00
2016-12-28 23:15:13 +00:00
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("info", "0001_initial")]
2016-12-28 23:15:13 +00:00
operations = [
migrations.AlterModelOptions(
2019-06-16 12:32:24 +00:00
name="infocategory",
options={
"ordering": ["-weight", "headline"],
"verbose_name_plural": "Info Categories",
},
2016-12-28 23:15:13 +00:00
),
migrations.AlterField(
2019-06-16 12:32:24 +00:00
model_name="infocategory",
name="weight",
field=models.PositiveIntegerField(
default=100,
help_text="Determines sorting/ordering. Heavier categories sink to the bottom. Categories with the same weight are ordered alphabetically. Defaults to 100.",
),
2016-12-28 23:15:13 +00:00
),
migrations.AlterField(
2019-06-16 12:32:24 +00:00
model_name="infoitem",
name="weight",
field=models.PositiveIntegerField(
default=100,
help_text="Determines sorting/ordering. Heavier items sink to the bottom. Items with the same weight are ordered alphabetically. Defaults to 100.",
),
2016-12-28 23:15:13 +00:00
),
]