mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-09 22:38:19 +02:00
20 lines
510 B
Python
20 lines
510 B
Python
# Generated by Django 3.1.4 on 2022-10-17 11:13
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('django_mailbox', '0008_auto_20190219_1553'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='message',
|
|
name='timestamp',
|
|
field=models.DateTimeField(default=django.utils.timezone.now, verbose_name='Timestamp'),
|
|
preserve_default=False,
|
|
),
|
|
]
|