mirror of
https://github.com/eduardogsilva/routerfleet.git
synced 2025-07-21 11:24:23 +02:00
18 lines
415 B
Python
18 lines
415 B
Python
# Generated by Django 5.0.4 on 2024-04-16 18:31
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('message_center', '0003_message_error_status_code'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='message',
|
|
name='next_retry',
|
|
field=models.DateTimeField(blank=True, null=True),
|
|
),
|
|
]
|