22 lines
502 B
Python
22 lines
502 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11.4 on 2017-09-01 20:41
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
import datetime
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('games', '0005_auto_20170831_1211'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='timeline',
|
||
|
name='date',
|
||
|
field=models.DateField(default=datetime.datetime.now, verbose_name='date'),
|
||
|
),
|
||
|
]
|