bornhack-website/src/program/migrations/0035_auto_20170314_2325.py

22 lines
594 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-03-14 22:25
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("program", "0034_auto_20170314_2012")]
operations = [
migrations.AlterField(
model_name="eventlocation",
name="icon",
field=models.CharField(
help_text="hex for the unicode character in the fontawesome icon set to use, like 'f000' for 'fa-glass'",
max_length=100,
),
)
]