Ticket #24653: 0002_remove_choice_question.py
| File 0002_remove_choice_question.py, 341 bytes (added by , 11 years ago) |
|---|
| Line | |
|---|---|
| 1 | # -*- coding: utf-8 -*- |
| 2 | from __future__ import unicode_literals |
| 3 | |
| 4 | from django.db import models, migrations |
| 5 | |
| 6 | |
| 7 | class 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 | ] |