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
20 lines
517 B
Python
20 lines
517 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('storycraft', '0002_auto_20150619_2034'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='storycraftgame',
|
|
name='status',
|
|
field=models.CharField(default='OPEN', max_length=16, choices=[('OPEN', 'OPEN'), ('IN PROGRESS', 'IN PROGRESS'), ('COMPLETED', 'COMPLETED')]),
|
|
),
|
|
]
|