From 001a2cf98abaf47a50d36929f3098eabfd24eeb3 Mon Sep 17 00:00:00 2001 From: SvyatoslavArtymovych Date: Thu, 15 Jun 2023 10:25:06 +0300 Subject: [PATCH] black --- migrations/versions/ad0ed27f417f_entity_id.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/migrations/versions/ad0ed27f417f_entity_id.py b/migrations/versions/ad0ed27f417f_entity_id.py index 61011c9..729c6db 100644 --- a/migrations/versions/ad0ed27f417f_entity_id.py +++ b/migrations/versions/ad0ed27f417f_entity_id.py @@ -10,23 +10,23 @@ import sqlalchemy as sa # revision identifiers, used by Alembic. -revision = 'ad0ed27f417f' -down_revision = '3d45df38ffa9' +revision = "ad0ed27f417f" +down_revision = "3d45df38ffa9" branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### - with op.batch_alter_table('notifications', schema=None) as batch_op: - batch_op.add_column(sa.Column('entity_id', sa.Integer(), nullable=False)) + with op.batch_alter_table("notifications", schema=None) as batch_op: + batch_op.add_column(sa.Column("entity_id", sa.Integer(), nullable=False)) # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### - with op.batch_alter_table('notifications', schema=None) as batch_op: - batch_op.drop_column('entity_id') + with op.batch_alter_table("notifications", schema=None) as batch_op: + batch_op.drop_column("entity_id") # ### end Alembic commands ###