Ticket #28677: 0005_auto_20160414_1351.py

File 0005_auto_20160414_1351.py, 446 bytes (added by Christian Kreuzberger, 7 years ago)
Line 
1# -*- coding: utf-8 -*-
2from __future__ import unicode_literals
3
4from django.db import models, migrations
5
6
7class Migration(migrations.Migration):
8
9 dependencies = [
10 ('polls', '0004_actualvote'),
11 ]
12
13 operations = [
14 migrations.AlterField(
15 model_name='choice',
16 name='poll',
17 field=models.ForeignKey(related_name='choices', verbose_name=b'Which poll?', to='polls.Poll'),
18 ),
19 ]
Back to Top