oncall-engine/engine/apps/slack/0013_remove_slackmessage__channel_id_db.py
Joey Orlando dd2393165d
chore: remove SlackMessage._channel_id and SlackMessage.organization fields (#5340)
# What this PR does

Follow-up cleanup PR for https://github.com/grafana/oncall/pull/5325
(and https://github.com/grafana/oncall/pull/5330)

## 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] Added the relevant release notes label (see labels prefixed w/
`release:`). These labels dictate how your PR will
    show up in the autogenerated release notes.
2024-12-06 13:49:24 -05:00

22 lines
639 B
Python

# NOTE: this is being left in this directory on purpose, it will be moved to apps/alerts/migrations
# in a separate PR/release
#
# Generated by Django 4.2.17 on 2024-12-06 17:05
from django.db import migrations
import common.migrations.remove_field
class Migration(migrations.Migration):
dependencies = [
("slack", "0012_remove_slackmessage_organization_state"),
]
operations = [
common.migrations.remove_field.RemoveFieldDB(
model_name="SlackMessage",
name="_channel_id",
remove_state_migration=("slack", "0011_remove_slackmessage__channel_id_state"),
),
]