22 lines
473 B
Python
22 lines
473 B
Python
# Copyright The IETF Trust 2020, All Rights Reserved
|
|
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.27 on 2020-02-22 09:29
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('message', '0006_remove_docs2_m2m'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='message',
|
|
name='sent',
|
|
field=models.DateTimeField(blank=True, null=True),
|
|
),
|
|
]
|