summaryrefslogtreecommitdiff
path: root/postgresqleu/confreg/migrations/0036_htmlicon.py
blob: 09d68fef110185c50a97cb53433d52680838a3c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-
# Generated by Django 1.11.10 on 2018-11-18 18:48
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('confreg', '0035_confseries_administrators'),
    ]

    operations = [
        migrations.AddField(
            model_name='conferencesession',
            name='htmlicon',
            field=models.CharField(blank=True, help_text='HTML representing an icon used for this session on the schedule (and optionally elsewhere)', max_length=100, verbose_name='HTML Icon'),
        ),
    ]