Skip to content

Commit 59dc492

Browse files
committed
add migration
1 parent 7a42219 commit 59dc492

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 5.1.4 on 2025-02-27 00:50
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('core', '0003_added_extra_field_to_webhook'),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name='discordmessage',
15+
name='send_after',
16+
field=models.DateTimeField(blank=True, null=True),
17+
),
18+
]

0 commit comments

Comments
 (0)