# -*- coding: utf-8 -*- 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')]), ), ]