Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
robertaboukhalil committed Nov 13, 2023
1 parent 1aa95db commit 4adcb26
Showing 1 changed file with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,19 @@
from alembic import op

# revision identifiers, used by Alembic.
revision = '20231113_092015'
down_revision = '20231109_103318'
revision = "20231113_092015"
down_revision = "20231109_103318"
branch_labels = None
depends_on = None


def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.alter_column('sequencing_read', 'r1_file_id',
existing_type=sa.UUID(),
nullable=True)
op.alter_column("sequencing_read", "r1_file_id", existing_type=sa.UUID(), nullable=True)
# ### end Alembic commands ###


def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.alter_column('sequencing_read', 'r1_file_id',
existing_type=sa.UUID(),
nullable=False)
op.alter_column("sequencing_read", "r1_file_id", existing_type=sa.UUID(), nullable=False)
# ### end Alembic commands ###

0 comments on commit 4adcb26

Please sign in to comment.