forked from polka_billy/porridger
29 lines
587 B
Python
29 lines
587 B
Python
"""created relationships between Trashbox and User
|
|
|
|
Revision ID: b806af0cc2cb
|
|
Revises: 58290a82b821
|
|
Create Date: 2023-08-08 00:05:55.175838
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'b806af0cc2cb'
|
|
down_revision = '58290a82b821'
|
|
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 ###
|