Skip to content

Commit

Permalink
fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
andrptrc committed Dec 4, 2024
1 parent b5a1d19 commit fb27dd1
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
"""add an aoptional 'error_message' field to Task
Revision ID: 26299cf5a3b2
Revises:
Revises:
Create Date: 2024-11-27 16:09:14.473532
"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = '26299cf5a3b2'
down_revision = None
Expand All @@ -17,7 +16,7 @@


def upgrade():
op.add_column('tasks', sa.Column('error_message', sa.String(), nullable = True))
op.add_column('tasks', sa.Column('error_message', sa.String(), nullable=True))


def downgrade():
Expand Down

0 comments on commit fb27dd1

Please sign in to comment.