26 lines
669 B
Python
26 lines
669 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.10.5 on 2017-07-15 09:10
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('sponsors', '0005_sponsor_url'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='sponsor',
|
||
|
name='logo',
|
||
|
field=models.URLField(help_text='A URL to the logo', max_length=255),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='sponsor',
|
||
|
name='url',
|
||
|
field=models.URLField(blank=True, help_text='An URL to the sponsor.', null=True),
|
||
|
),
|
||
|
]
|