2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-29 12:06:44 +00:00
InvenTree/InvenTree/common/migrations/0014_alter_notificationmessage_creation.py
2021-11-29 23:46:41 +01:00

19 lines
409 B
Python

# Generated by Django 3.2.5 on 2021-11-29 22:21
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('common', '0013_notificationmessage'),
]
operations = [
migrations.AlterField(
model_name='notificationmessage',
name='creation',
field=models.DateTimeField(auto_now_add=True),
),
]