Add word drawing support
This commit is contained in:
19
words/migrations/0003_draw_word_related.py
Normal file
19
words/migrations/0003_draw_word_related.py
Normal 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'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user