Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 13, 2023
1 parent 9ece680 commit 23647ac
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"""

from alembic import op
import sqlalchemy as sa
from alembic import op

# revision identifiers, used by Alembic.
revision: str = 'ce340b5b9d1e'
Expand All @@ -32,7 +32,10 @@ def upgrade_() -> None:
"""Upgrade default database."""
# ### commands auto generated by Alembic - please adjust! ###
with op.batch_alter_table('project', schema=None) as batch_op:
batch_op.add_column(sa.Column('thumbnail_image', sa.LargeBinary(), nullable=True))
batch_op.add_column(
sa.Column('thumbnail_image', sa.LargeBinary(), nullable=True)
)


def downgrade_() -> None:
"""Downgrade default database."""
Expand Down

0 comments on commit 23647ac

Please sign in to comment.