"""Playlist Streams Revision ID: 6f872738dab7 Revises: 4fdfd0771dde Create Date: 2018-06-11 09:44:54.838170 """ # revision identifiers, used by Alembic. revision = '6f872738dab7' down_revision = '4fdfd0771dde' branch_labels = None depends_on = None from alembic import op import sqlalchemy as sa def upgrade(): ### commands auto generated by Alembic - please adjust! ### op.add_column('spy_playlist', sa.Column('daily_streams', sa.Integer(), nullable=True)) op.add_column('spy_playlist', sa.Column('pct_uk_streams', sa.Float(), nullable=True)) ### end Alembic commands ### def downgrade(): ### commands auto generated by Alembic - please adjust! ### op.drop_column('spy_playlist', 'pct_uk_streams') op.drop_column('spy_playlist', 'daily_streams') ### end Alembic commands ###