File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
junction/proposals/migrations Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
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
+ ]
You can’t perform that action at this time.
0 commit comments