Skip to content

Commit

Permalink
fixed job_id typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tcollins2011 committed Oct 29, 2024
1 parent a8b15e8 commit 392a255
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,10 @@ def upgrade():
create_table(
table_name,
Column('id', Integer, primary_key=True),
Column('user_id', Integer, ForeignKey('job.id'), nullable=True),
Column('job_id', Integer, ForeignKey('job.id'), nullable=True),
Column('response', Text, nullable=False),
Column('feedback', Integer, nullable=True),
)


def downgrade():
drop_table(table_name)

0 comments on commit 392a255

Please sign in to comment.