Skip to content

Commit d84f748

Browse files
committed
Add missing migrations related to video URL
Related to #668 Signed-off-by: Nabarun Pal <[email protected]>
1 parent ac526e1 commit d84f748

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.9 on 2020-06-17 18:07
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations, models
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
("proposals", "0027_auto_20200502_0540"),
12+
]
13+
14+
operations = [
15+
migrations.AlterField(
16+
model_name="historicalproposal",
17+
name="video_url",
18+
field=models.URLField(
19+
blank=True,
20+
default="",
21+
help_text="Short 1-2 min video describing your talk",
22+
),
23+
),
24+
migrations.AlterField(
25+
model_name="proposal",
26+
name="video_url",
27+
field=models.URLField(
28+
blank=True,
29+
default="",
30+
help_text="Short 1-2 min video describing your talk",
31+
),
32+
),
33+
]

0 commit comments

Comments
 (0)