Skip to content

Commit

Permalink
chore: fix migration linter issue (#5342)
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyorlando authored Dec 6, 2024
1 parent dd23931 commit 33913c5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions engine/apps/slack/0013_remove_slackmessage__channel_id_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#
# Generated by Django 4.2.17 on 2024-12-06 17:05

import django_migration_linter as linter
from django.db import migrations

import common.migrations.remove_field
Expand All @@ -14,6 +15,7 @@ class Migration(migrations.Migration):
]

operations = [
linter.IgnoreMigration(),
common.migrations.remove_field.RemoveFieldDB(
model_name="SlackMessage",
name="_channel_id",
Expand Down
2 changes: 2 additions & 0 deletions engine/apps/slack/0014_remove_slackmessage_organization_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#
# Generated by Django 4.2.17 on 2024-12-06 17:05

import django_migration_linter as linter
from django.db import migrations

import common.migrations.remove_field
Expand All @@ -14,6 +15,7 @@ class Migration(migrations.Migration):
]

operations = [
linter.IgnoreMigration(),
common.migrations.remove_field.RemoveFieldDB(
model_name="SlackMessage",
name="organization",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Generated by Django 4.2.16 on 2024-12-04 12:00

import django_migration_linter as linter
from django.db import migrations

import common.migrations.remove_field
Expand All @@ -11,6 +12,7 @@ class Migration(migrations.Migration):
]

operations = [
linter.IgnoreMigration(),
common.migrations.remove_field.RemoveFieldDB(
model_name="SlackMessage",
name="active_update_task_id",
Expand Down

0 comments on commit 33913c5

Please sign in to comment.