Skip to content

Commit

Permalink
Self review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-moore-97 committed Nov 22, 2023
1 parent 1974139 commit c3c6b04
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions alembic/versions/0a8cb28dc397_create_response_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,9 @@ def upgrade() -> None:
op.add_column("response", sa.Column("survey_id", sa.String(), nullable=False))
op.add_column("response", sa.Column("session_id", sa.String(), nullable=False))
op.add_column("response", sa.Column("dist", sa.String(), nullable=False))
# Add foreign key to interaction


def downgrade() -> None:
# Drop foreign key from interaction
op.drop_column("response", "interaction_id")
op.drop_column("response", "response_id")
op.drop_column("response", "survey_id")
Expand Down

0 comments on commit c3c6b04

Please sign in to comment.