# What this PR does Adds mobile app push notifications for shift swap requests. ## Which issue(s) this PR fixes https://github.com/grafana/oncall/issues/2630 ## Checklist - [x] Unit, integration, and e2e (if applicable) tests updated - [x] Documentation added (or `pr:no public docs` PR label added if not required) - [x] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not required)
19 lines
468 B
Python
19 lines
468 B
Python
# Generated by Django 3.2.20 on 2023-08-01 18:16
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('schedules', '0015_shiftswaprequest_slack_message'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='shiftswaprequest',
|
|
name='created_at',
|
|
field=models.DateTimeField(default=django.utils.timezone.now),
|
|
),
|
|
]
|