mirror of
https://github.com/eduardogsilva/routerfleet.git
synced 2025-08-03 09:44:31 +02:00
Message notification and sending
This commit is contained in:
parent
dfb4285ab3
commit
034bc7057b
9 changed files with 182 additions and 3 deletions
18
message_center/migrations/0004_message_next_retry.py
Normal file
18
message_center/migrations/0004_message_next_retry.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# 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),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue