bornhack-website/src/sponsors/migrations/0004_sponsortier_weight.py

22 lines
609 B
Python
Raw Normal View History

2017-07-15 09:00:59 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-07-14 21:09
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("sponsors", "0003_sponsortier_camp")]
2017-07-15 09:00:59 +00:00
operations = [
migrations.AddField(
2019-06-16 12:32:24 +00:00
model_name="sponsortier",
name="weight",
field=models.IntegerField(
default=0,
help_text="This decides where on the list the tier will be shown. I.e.\n gold should have a lower value than silver.",
),
)
2017-07-15 09:00:59 +00:00
]