2017-03-15 23:30:59 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.10.5 on 2017-03-15 23:04
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
2020-02-12 12:10:41 +00:00
|
|
|
|
2017-03-15 23:30:59 +00:00
|
|
|
import program.models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2019-06-16 12:32:24 +00:00
|
|
|
dependencies = [("program", "0035_auto_20170314_2325")]
|
2017-03-15 23:30:59 +00:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2019-06-16 12:32:24 +00:00
|
|
|
model_name="speakerproposal",
|
|
|
|
name="picture_large",
|
|
|
|
field=models.ImageField(
|
|
|
|
blank=True,
|
|
|
|
help_text="A picture of the speaker",
|
|
|
|
max_length=255,
|
|
|
|
null=True,
|
|
|
|
storage=program.models.CustomUrlStorage(),
|
|
|
|
upload_to=program.models.get_speakerproposal_picture_upload_path,
|
|
|
|
),
|
2017-03-15 23:30:59 +00:00
|
|
|
),
|
|
|
|
migrations.AlterField(
|
2019-06-16 12:32:24 +00:00
|
|
|
model_name="speakerproposal",
|
|
|
|
name="picture_small",
|
|
|
|
field=models.ImageField(
|
|
|
|
blank=True,
|
|
|
|
help_text="A thumbnail of the speaker picture",
|
|
|
|
max_length=255,
|
|
|
|
null=True,
|
|
|
|
storage=program.models.CustomUrlStorage(),
|
|
|
|
upload_to=program.models.get_speakerproposal_picture_upload_path,
|
|
|
|
),
|
2017-03-15 23:30:59 +00:00
|
|
|
),
|
|
|
|
]
|