chore: fix migration linter issue (#5342)
This commit is contained in:
parent
dd2393165d
commit
33913c5c58
3 changed files with 6 additions and 0 deletions
|
|
@ -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
|
||||
|
|
@ -14,6 +15,7 @@ class Migration(migrations.Migration):
|
|||
]
|
||||
|
||||
operations = [
|
||||
linter.IgnoreMigration(),
|
||||
common.migrations.remove_field.RemoveFieldDB(
|
||||
model_name="SlackMessage",
|
||||
name="_channel_id",
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
@ -14,6 +15,7 @@ class Migration(migrations.Migration):
|
|||
]
|
||||
|
||||
operations = [
|
||||
linter.IgnoreMigration(),
|
||||
common.migrations.remove_field.RemoveFieldDB(
|
||||
model_name="SlackMessage",
|
||||
name="organization",
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
@ -11,6 +12,7 @@ class Migration(migrations.Migration):
|
|||
]
|
||||
|
||||
operations = [
|
||||
linter.IgnoreMigration(),
|
||||
common.migrations.remove_field.RemoveFieldDB(
|
||||
model_name="SlackMessage",
|
||||
name="active_update_task_id",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue