Skip to content

Commit

Permalink
Add retry value to testingfarmresult enum (#2601)
Browse files Browse the repository at this point in the history
Add retry value to testingfarmresult enum

Should fix #2466

Reviewed-by: Nikola Forró
Reviewed-by: Laura Barcziová
Reviewed-by: Matej Focko
  • Loading branch information
softwarefactory-project-zuul[bot] authored Oct 24, 2024
2 parents 772f124 + 38c78a6 commit 4c3add3
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions alembic/versions/2e5ad4cbfa33_add_retry_to_testingfarmresult.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
"""Add retry to TestingFarmResult
Revision ID: 2e5ad4cbfa33
Revises: adb6be5bc358
Create Date: 2024-10-24 08:58:42.357987
"""

from alembic import op

# revision identifiers, used by Alembic.
revision = "2e5ad4cbfa33"
down_revision = "adb6be5bc358"
branch_labels = None
depends_on = None


def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
with op.get_context().autocommit_block():
op.execute("ALTER TYPE testingfarmresult ADD VALUE 'retry'")
# ### end Alembic commands ###


def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###

0 comments on commit 4c3add3

Please sign in to comment.