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
25 lines
569 B
Python
25 lines
569 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('storycraft', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='storycraftgame',
|
|
name='end_time',
|
|
field=models.DateTimeField(null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='storycraftgame',
|
|
name='start_time',
|
|
field=models.DateTimeField(null=True),
|
|
),
|
|
]
|