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

21 lines
578 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):
dependencies = [
('sponsors', '0003_sponsortier_camp'),
]
operations = [
migrations.AddField(
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.'),
),
]