Skip to content

Commit

Permalink
Forgotten migration file
Browse files Browse the repository at this point in the history
  • Loading branch information
niconoe committed Oct 10, 2024
1 parent fa98fab commit 98f51c5
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions dashboard/migrations/0020_user_notification_delay_days.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 4.2.13 on 2024-10-10 12:32

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("dashboard", "0019_migrate_obs_views"),
]

operations = [
migrations.AddField(
model_name="user",
name="notification_delay_days",
field=models.IntegerField(default=365),
),
]

0 comments on commit 98f51c5

Please sign in to comment.