"""auto-add Votes table Revision ID: 4fa455e8771b Revises: f60bfe68b20f Create Date: 2022-02-24 02:53:06.350609 """ from alembic import op import sqlalchemy as sa # revision identifiers, used by Alembic. revision = '4fa455e8771b' down_revision = 'f60bfe68b20f' branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.create_table('votes', sa.Column('user_id', sa.Integer(), nullable=False), sa.Column('post_id', sa.Integer(), nullable=False), sa.ForeignKeyConstraint(['post_id'], ['posts.id'], ondelete='CASCADE'), sa.ForeignKeyConstraint(['user_id'], ['users.id'], ondelete='CASCADE'), sa.PrimaryKeyConstraint('user_id', 'post_id') ) # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### op.drop_table('votes') # ### end Alembic commands ###