Skip to content

Commit 7a0786e

Browse files
authored
chore: finish drop columns migrations (#5280)
# What this PR does Second, and final part of, #5277 ## 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.
1 parent dd65732 commit 7a0786e

4 files changed

+84
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Generated by Django 4.2.16 on 2024-11-20 20:21
2+
3+
import common.migrations.remove_field
4+
import django_migration_linter as linter
5+
from django.db import migrations
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('alerts', '0068_remove_resolutionnoteslackmessage__slack_channel_id_state'),
12+
]
13+
14+
operations = [
15+
linter.IgnoreMigration(),
16+
common.migrations.remove_field.RemoveFieldDB(
17+
model_name='channelfilter',
18+
name='_slack_channel_id',
19+
remove_state_migration=('alerts', '0067_remove_channelfilter__slack_channel_id_state'),
20+
),
21+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Generated by Django 4.2.16 on 2024-11-20 20:23
2+
3+
import common.migrations.remove_field
4+
import django_migration_linter as linter
5+
from django.db import migrations
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('alerts', '0069_remove_channelfilter__slack_channel_id_db'),
12+
]
13+
14+
operations = [
15+
linter.IgnoreMigration(),
16+
common.migrations.remove_field.RemoveFieldDB(
17+
model_name='resolutionnoteslackmessage',
18+
name='_slack_channel_id',
19+
remove_state_migration=('alerts', '0068_remove_resolutionnoteslackmessage__slack_channel_id_state'),
20+
),
21+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Generated by Django 4.2.16 on 2024-11-20 20:12
2+
3+
import common.migrations.remove_field
4+
import django_migration_linter as linter
5+
from django.db import migrations
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('schedules', '0020_remove_oncallschedule_channel_state'),
12+
]
13+
14+
operations = [
15+
linter.IgnoreMigration(),
16+
common.migrations.remove_field.RemoveFieldDB(
17+
model_name='oncallschedule',
18+
name='channel',
19+
remove_state_migration=('schedules', '0020_remove_oncallschedule_channel_state'),
20+
),
21+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Generated by Django 4.2.16 on 2024-11-20 17:58
2+
3+
import common.migrations.remove_field
4+
import django_migration_linter as linter
5+
from django.db import migrations
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('user_management', '0028_remove_organization_general_log_channel_id_state'),
12+
]
13+
14+
operations = [
15+
linter.IgnoreMigration(),
16+
common.migrations.remove_field.RemoveFieldDB(
17+
model_name='organization',
18+
name='general_log_channel_id',
19+
remove_state_migration=('user_management', '0028_remove_organization_general_log_channel_id_state'),
20+
),
21+
]

0 commit comments

Comments
 (0)