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

fix(migrations): reorder skipped 1.4 migrations #19543

Merged
merged 1 commit into from
Apr 6, 2022
Merged
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 @@ -17,14 +17,14 @@
"""add_extra_config_column_to_alerts

Revision ID: abe27eaf93db
Revises: aea15018d53b
Revises: 0ca9e5f1dacd
Create Date: 2021-12-02 12:03:20.691171

"""

# revision identifiers, used by Alembic.
revision = "abe27eaf93db"
down_revision = "aea15018d53b"
down_revision = "0ca9e5f1dacd"

import sqlalchemy as sa
from alembic import op
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
"""rename_csv_to_file

Revision ID: b92d69a6643c
Revises: 32646df09c64
Revises: aea15018d53b
Create Date: 2021-09-19 14:42:20.130368

"""

# revision identifiers, used by Alembic.
revision = "b92d69a6643c"
down_revision = "32646df09c64"
down_revision = "aea15018d53b"

import sqlalchemy as sa
from alembic import op
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"""add_certifications_columns_to_slice

Revision ID: f9847149153d
Revises: 0ca9e5f1dacd
Revises: 32646df09c64
Create Date: 2021-11-03 14:07:09.905194

"""
Expand All @@ -27,7 +27,7 @@
from alembic import op

revision = "f9847149153d"
down_revision = "0ca9e5f1dacd"
down_revision = "32646df09c64"


def upgrade():
Expand Down