Skip to content

Commit

Permalink
Fix/agents delete (#795)
Browse files Browse the repository at this point in the history
  • Loading branch information
nihiragarwal24 committed Jul 18, 2023
1 parent a47dfac commit 6486fe8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions migrations/versions/cac478732572_delete_agent_feature.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = 'cac478732572'
down_revision = 'e39295ec089c'
Expand All @@ -17,7 +16,8 @@


def upgrade() -> None:
op.add_column('agents', sa.Column('is_deleted', sa.Boolean(), nullable=True))
op.add_column('agents', sa.Column('is_deleted', sa.Boolean(), nullable=True, server_default=sa.false()))


def downgrade() -> None:
op.drop_column('agents', 'is_deleted')

0 comments on commit 6486fe8

Please sign in to comment.