dr.botzo/dr_botzo/storycraft/migrations/0003_auto_20150619_2038.py
Brian S. Stephan 1193ce5b6a storycraft: port to ircbot v2
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
2015-06-19 21:06:58 -05:00

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')]),
),
]