2017-02-18 11:30:26 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.10.5 on 2017-02-18 10:48
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2019-06-16 12:32:24 +00:00
|
|
|
dependencies = [("program", "0021_auto_20170205_2130")]
|
2017-02-18 11:30:26 +00:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.RenameField(
|
2019-06-16 12:32:24 +00:00
|
|
|
model_name="speaker", old_name="picture", new_name="picture_large"
|
2017-02-18 11:30:26 +00:00
|
|
|
),
|
|
|
|
migrations.AddField(
|
2019-06-16 12:32:24 +00:00
|
|
|
model_name="speaker",
|
|
|
|
name="picture_small",
|
|
|
|
field=models.ImageField(blank=True, null=True, upload_to=""),
|
2017-02-18 11:30:26 +00:00
|
|
|
),
|
|
|
|
]
|