23 lines
561 B
Python
23 lines
561 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11.6 on 2018-05-30 02:52
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.utils.timezone
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('map', '0067_remove_old_images'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='casestudydraft',
|
||
|
name='created',
|
||
|
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
|
||
|
preserve_default=False,
|
||
|
),
|
||
|
]
|