Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.13.9 #5344

Merged
merged 1 commit into from
Dec 6, 2024
Merged

v1.13.9 #5344

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Loading