Skip to content

Commit 98aea84

Browse files
ChrisCRLcj-ballesteros
authored andcommitted
forgot to add the migration file :P. oopsie
1 parent d95365f commit 98aea84

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Generated by Django 5.1.6 on 2025-04-13 02:57
2+
3+
import django.db.models.deletion
4+
from django.conf import settings
5+
from django.db import migrations, models
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('notifications', '0003_alter_notification_info_category_and_more'),
12+
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
13+
]
14+
15+
operations = [
16+
migrations.AddField(
17+
model_name='notification',
18+
name='sender',
19+
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='sent_notifications', to=settings.AUTH_USER_MODEL),
20+
),
21+
]

0 commit comments

Comments
 (0)