Skip to content

Commit ad0dce6

Browse files
committed
fix template_name in migrations
1 parent 66bebf0 commit ad0dce6

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.11.9 on 2018-01-30 13:44
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations, models
6+
import wagtailstreamforms.conf
7+
8+
9+
class Migration(migrations.Migration):
10+
11+
dependencies = [
12+
('wagtailstreamforms', '0011_auto_20180130_0844'),
13+
]
14+
15+
operations = [
16+
migrations.AlterField(
17+
model_name='baseform',
18+
name='template_name',
19+
field=models.CharField(choices=wagtailstreamforms.conf.get_setting('FORM_TEMPLATES'), max_length=255, verbose_name='Template'),
20+
),
21+
]

0 commit comments

Comments
 (0)