29 lines
566 B
Python
29 lines
566 B
Python
"""Fixing table relationships
|
|
|
|
Revision ID: 563253042f7e
|
|
Revises: 7c67a545533e
|
|
Create Date: 2023-01-02 13:00:44.136697
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '563253042f7e'
|
|
down_revision = '7c67a545533e'
|
|
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 ###
|