Skip to content

Commit

Permalink
Merge 0eecf05 into ac526e1
Browse files Browse the repository at this point in the history
  • Loading branch information
palnabarun committed Jun 17, 2020
2 parents ac526e1 + 0eecf05 commit d073bcb
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions junction/proposals/migrations/0028_auto_20200617_2337.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2020-06-17 18:07
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("proposals", "0027_auto_20200502_0540"),
]

operations = [
migrations.AlterField(
model_name="historicalproposal",
name="video_url",
field=models.URLField(
blank=True,
default="",
help_text="Short 1-2 min video describing your talk",
),
),
migrations.AlterField(
model_name="proposal",
name="video_url",
field=models.URLField(
blank=True,
default="",
help_text="Short 1-2 min video describing your talk",
),
),
]

0 comments on commit d073bcb

Please sign in to comment.