bornhack-website/src/program/migrations/0057_auto_20180522_0659.py

21 lines
515 B
Python
Raw Normal View History

# Generated by Django 2.0.4 on 2018-05-22 04:59
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("program", "0056_add_urltypes")]
operations = [
migrations.AlterField(
2019-06-16 12:32:24 +00:00
model_name="urltype",
name="icon",
field=models.CharField(
default="link",
help_text="Name of the fontawesome icon to use without the 'fa-' part",
max_length=100,
),
)
]