"""drop no parts Revision ID: a4063bb5b990 Revises: e075b36c9bb0 Create Date: 2019-01-22 10:10:57.910321 """ # revision identifiers, used by Alembic. revision = 'a4063bb5b990' down_revision = 'e075b36c9bb0' branch_labels = None depends_on = None from alembic import op import sqlalchemy as sa def upgrade(): # this archive table was just a copy before the partitioning op.execute('''drop table sc_track_stats_no_parts''') def downgrade(): pass