bornhack-website/src/program/migrations/0062_auto_20180717_1720.py

21 lines
549 B
Python
Raw Normal View History

# Generated by Django 2.0.4 on 2018-07-17 15:20
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("program", "0061_auto_20180603_1525")]
operations = [
migrations.AlterField(
2019-06-16 12:32:24 +00:00
model_name="urltype",
name="icon",
field=models.CharField(
default="fas fa-link",
help_text="Name of the fontawesome icon to use, including the 'fab fa-' or 'fas fa-' part.",
max_length=100,
),
)
]