word-challenge/words/migrations/0003_draw_word_related.py

20 lines
412 B
Python
Raw Normal View History

2015-11-26 13:51:04 +00:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('words', '0002_draw_work'),
]
operations = [
migrations.AlterField(
model_name='draw',
name='word',
field=models.ForeignKey(related_name='draws', to='words.Word'),
),
]