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

New schema revision that adds the `null_dag` capability

parent 05e4bdb5
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !507. Comments created here will be created in the context of that merge request.
"""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