Add word drawing support

This commit is contained in:
Gergely Polonkai
2015-11-26 14:51:04 +01:00
parent 955cace9bd
commit 0c16d9a73b
4 changed files with 66 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
# -*- 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'),
),
]