Ticket #24653: 0002_remove_choice_question.py

File 0002_remove_choice_question.py, 341 bytes (added by László Károlyi, 10 years ago)

Removing the question foreign key

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', '0001_initial'),
11 ]
12
13 operations = [
14 migrations.RemoveField(
15 model_name='choice',
16 name='question',
17 ),
18 ]
Back to Top