Skip to content

Commit

Permalink
Create e551728398ab_.py
Browse files Browse the repository at this point in the history
  • Loading branch information
salmma committed Jul 10, 2024
1 parent dd328bc commit 8f188a0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions migrations/versions/e551728398ab_.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
"""empty message
Revision ID: e551728398ab
Revises: 13d46ba5b86f
Create Date: 2024-07-10 09:29:15.216667
"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = 'e551728398ab'
down_revision = '13d46ba5b86f'
branch_labels = None
depends_on = None


def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.create_foreign_key(None, 'result', 'generated__circuit', ['generated_circuit_id'], ['id'])
# ### end Alembic commands ###


def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_constraint(None, 'result', type_='foreignkey')
# ### end Alembic commands ###

0 comments on commit 8f188a0

Please sign in to comment.