Skip to content

Commit

Permalink
Fixing downrev
Browse files Browse the repository at this point in the history
  • Loading branch information
galvana committed Jun 29, 2023
1 parent 204f500 commit cb9c8ab
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
"""make ConnectionConfig.name optional
Revision ID: 7315b9d7fda6
Revises: 2be84e68df32
Revises: d2996381c4dd
Create Date: 2023-06-26 20:39:29.953904
"""
from alembic import op
import sqlalchemy as sa

from alembic import op

# revision identifiers, used by Alembic.
revision = "7315b9d7fda6"
down_revision = "2be84e68df32"
down_revision = "d2996381c4dd"
branch_labels = None
depends_on = None


def upgrade():
pass
op.alter_column("connectionconfig", "name", nullable=True)

op.drop_index(op.f("ix_connectionconfig_name"), table_name="connectionconfig")
Expand Down

0 comments on commit cb9c8ab

Please sign in to comment.