22 lines
545 B
Python
22 lines
545 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.db import models, migrations
|
|
import datetime
|
|
from django.utils.timezone import utc
|
|
|
|
|
|
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=utc), auto_now_add=True),
|
|
preserve_default=False,
|
|
),
|
|
]
|