Skip to content

Commit

Permalink
Add retry value to testingfarmresult enum
Browse files Browse the repository at this point in the history
Co-authored-by: Nikola Forró <[email protected]>
  • Loading branch information
majamassarini and nforro committed Oct 24, 2024
1 parent 772f124 commit 38c78a6
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 38c78a6

Please sign in to comment.