oncall-engine/engine/apps/alerts/migrations/0034_alter_resolutionnote_source.py
Vadim Stepanov 2179e7a1c9
Resolution note source mobile app (#3174)
# What this PR does

Fixes https://github.com/grafana/oncall/issues/2320

## 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)
2023-10-20 15:22:45 +01:00

18 lines
477 B
Python

# Generated by Django 3.2.20 on 2023-10-20 13:21
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('alerts', '0033_alertgrouplogrecord_action_source'),
]
operations = [
migrations.AlterField(
model_name='resolutionnote',
name='source',
field=models.IntegerField(choices=[(0, 'Slack'), (1, 'Web'), (2, 'Mobile App')], default=None, null=True),
),
]