# -*- coding: utf-8 -*-

from django.db import models, migrations
import datetime


class Migration(migrations.Migration):

    dependencies = [
        ('storycraft', '0004_auto_20150619_2040'),
    ]

    operations = [
        migrations.AddField(
            model_name='storycraftgame',
            name='create_time',
            field=models.DateTimeField(default=datetime.datetime(2015, 6, 20, 1, 51, 18, 778824, tzinfo=datetime.timezone.utc), auto_now_add=True),
            preserve_default=False,
        ),
    ]