Skip to content

Commit

Permalink
Remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathangreen committed Nov 27, 2024
1 parent 9e832bd commit 7147935
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@


def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.alter_column(
"customlists",
"auto_update_status",
Expand Down Expand Up @@ -79,11 +78,9 @@ def upgrade() -> None:
"workgenres", "genre_id", existing_type=sa.INTEGER(), nullable=False
)
op.alter_column("workgenres", "work_id", existing_type=sa.INTEGER(), nullable=False)
# ### end Alembic commands ###


def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.alter_column("workgenres", "work_id", existing_type=sa.INTEGER(), nullable=True)
op.alter_column("workgenres", "genre_id", existing_type=sa.INTEGER(), nullable=True)
op.alter_column(
Expand Down Expand Up @@ -142,4 +139,3 @@ def downgrade() -> None:
),
nullable=True,
)
# ### end Alembic commands ###

0 comments on commit 7147935

Please sign in to comment.