"""created relationships between Trashbox and User; (foreign key added to Trashbox table) Revision ID: ee035dd94fbb Revises: 96470e6327e0 Create Date: 2023-08-08 00:11:35.443724 """ from alembic import op import sqlalchemy as sa # revision identifiers, used by Alembic. revision = 'ee035dd94fbb' down_revision = '96470e6327e0' branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### with op.batch_alter_table('trashboxes', schema=None) as batch_op: batch_op.add_column(sa.Column('user_id', sa.Integer(), nullable=True)) batch_op.add_column(sa.Column('date_of_chose', sa.Date(), nullable=True)) # batch_op.create_foreign_key(None, 'users', ['user_id'], ['id']) # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### with op.batch_alter_table('trashboxes', schema=None) as batch_op: # batch_op.drop_constraint(None, type_='foreignkey') batch_op.drop_column('date_of_chose') batch_op.drop_column('user_id') # ### end Alembic commands ###