-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add retry value to testingfarmresult enum
Co-authored-by: Nikola Forró <[email protected]>
- Loading branch information
1 parent
772f124
commit 38c78a6
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
alembic/versions/2e5ad4cbfa33_add_retry_to_testingfarmresult.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ### |