this silly storytelling game has been lightly tested, but it appears to not blow up miserably, so i'm going to commit it until i can spend more time testing it/caring about it
30 lines
857 B
Python
30 lines
857 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('storycraft', '0003_auto_20150619_2038'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='storycraftline',
|
|
name='game',
|
|
field=models.ForeignKey(related_name='lines', to='storycraft.StorycraftGame'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='storycraftline',
|
|
name='player',
|
|
field=models.ForeignKey(related_name='lines', to='storycraft.StorycraftPlayer'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='storycraftplayer',
|
|
name='game',
|
|
field=models.ForeignKey(related_name='players', to='storycraft.StorycraftGame'),
|
|
),
|
|
]
|