29 lines
817 B
Python
29 lines
817 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
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'),
|
|
),
|
|
]
|