"""Added attachments Revision ID: cd4868f312c5 Revises: 001d2eaf0413 Create Date: 2020-08-01 19:22:12.405038 """ from alembic import op import sqlalchemy as sa # revision identifiers, used by Alembic. revision = 'cd4868f312c5' down_revision = '001d2eaf0413' branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.create_table('attachment', sa.Column('id', sa.Integer(), nullable=False), sa.Column('name', sa.Unicode(length=64), nullable=True), sa.Column('comment_id', sa.Integer(), nullable=False), sa.Column('size', sa.Integer(), nullable=True), sa.ForeignKeyConstraint(['comment_id'], ['comment.id'], ), sa.PrimaryKeyConstraint('id') ) # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### op.drop_table('attachment') # ### end Alembic commands ###