blob: c0647f55c95a277eb0015d57827eac2b2c935b6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('confreg', '0009_confslides'),
]
operations = [
migrations.AlterModelOptions(
name='volunteerslot',
options={'ordering': ['timerange']},
),
migrations.AlterField(
model_name='conferencesessionslides',
name='url',
field=models.URLField(max_length=1000, blank=True, verbose_name='URL'),
),
]
|