Skip to content
Snippets Groups Projects
Commit b619cc1c authored by Nathan Hertz's avatar Nathan Hertz Committed by Nathan Hertz
Browse files

New schema revision that adds the `null_dag` capability

parent 3679bdbc
No related branches found
No related tags found
1 merge request!507WS-677: `null_dag` capability
"""add null_dag capability
Revision ID: c717f781828d
Revises: 990c5cd70082
Create Date: 2021-09-15 14:58:45.780793
"""
from alembic import op
# revision identifiers, used by Alembic.
revision = "c717f781828d"
down_revision = "990c5cd70082"
branch_labels = None
depends_on = None
def upgrade():
op.execute(
"INSERT INTO capabilities (capability_name, capability_steps, max_jobs) VALUES "
"('null_dag', 'prepare-and-run-workflow null_dag\nawait-workflow', 2)"
)
def downgrade():
op.execute("DELETE FROM capabilities WHERE capability_name = 'null_dag'")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment