ojuso-map/apps/map/migrations/0068_casestudydraft_created.py

24 lines
596 B
Python
Raw Normal View History

2018-05-30 03:15:39 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2018-05-30 02:52
from __future__ import unicode_literals
import django.utils.timezone
2019-08-19 21:53:34 +00:00
from django.db import migrations
from django.db import models
2018-05-30 03:15:39 +00:00
class Migration(migrations.Migration):
2019-08-19 21:37:32 +00:00
dependencies = [("map", "0067_remove_old_images")]
2018-05-30 03:15:39 +00:00
operations = [
migrations.AddField(
2019-08-19 21:37:32 +00:00
model_name="casestudydraft",
name="created",
field=models.DateTimeField(
auto_now_add=True, default=django.utils.timezone.now
),
2018-05-30 03:15:39 +00:00
preserve_default=False,
2019-08-19 21:37:32 +00:00
)
2018-05-30 03:15:39 +00:00
]