24 lines
565 B
Python
24 lines
565 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2017-10-11 16:22
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("webapp", "0018_auto_20171011_1856"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="kaehmymessage",
|
|
name="timestamp",
|
|
field=models.DateTimeField(
|
|
default=django.utils.timezone.now, verbose_name="Timestamp"
|
|
),
|
|
),
|
|
]
|