"""Fixing table relationships Revision ID: 5281c8c8059d Revises: 28448b5f994f Create Date: 2023-01-02 13:16:37.480999 """ from alembic import op import sqlalchemy as sa # revision identifiers, used by Alembic. revision = '5281c8c8059d' down_revision = '28448b5f994f' branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### pass # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### pass # ### end Alembic commands ###