"""users_in_influencers Revision ID: 833f15861df7 Revises: 066cf50a2408 Create Date: 2017-11-19 10:05:19.967474 """ # revision identifiers, used by Alembic. revision = '833f15861df7' down_revision = '066cf50a2408' branch_labels = None depends_on = None from alembic import op import sqlalchemy as sa def upgrade(): ### commands auto generated by Alembic - please adjust! ### op.create_table('users_in_influencers', sa.Column('username', sa.String(), nullable=False), sa.Column('inid', sa.String(), autoincrement=False, nullable=False), sa.Column('added', sa.DateTime(), server_default=sa.text('CURRENT_TIMESTAMP'), nullable=False), sa.PrimaryKeyConstraint('username', 'inid') ) def downgrade(): ### commands auto generated by Alembic - please adjust! ### op.drop_table('users_in_influencers') ### end Alembic commands ###