bornhack-website/src/camps/migrations/0022_camp_colour.py

25 lines
637 B
Python
Raw Normal View History

2017-08-14 17:10:58 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-08-14 17:10
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("camps", "0021_auto_20170711_2247")]
2017-08-14 17:10:58 +00:00
operations = [
migrations.AddField(
2019-06-16 12:32:24 +00:00
model_name="camp",
name="colour",
field=models.CharField(
default="#000000",
help_text="The primary colour for the camp in hex",
max_length=7,
verbose_name="Colour",
),
2017-08-14 17:10:58 +00:00
preserve_default=False,
2019-06-16 12:32:24 +00:00
)
2017-08-14 17:10:58 +00:00
]