"""tiktokcookies Revision ID: 96d277eada7f Revises: 1f46b57f9a28 Create Date: 2021-03-17 14:50:58.164781 """ # revision identifiers, used by Alembic. revision = '96d277eada7f' down_revision = '1f46b57f9a28' branch_labels = None depends_on = None from alembic import op import sqlalchemy as sa def upgrade(): op.execute(''' create table tiktok_cookies ( name text not null primary key, last_updated timestamp not null default current_timestamp, value text not null ); ''') def downgrade(): op.execute('drop table tiktok_cookies')