31 lines
827 B
Python
31 lines
827 B
Python
|
|
"""empty message
|
||
|
|
|
||
|
|
Revision ID: 8430ab0a47af
|
||
|
|
Revises:
|
||
|
|
Create Date: 2024-07-29 10:42:57.684023
|
||
|
|
|
||
|
|
"""
|
||
|
|
from typing import Sequence, Union
|
||
|
|
|
||
|
|
from alembic import op
|
||
|
|
import sqlalchemy as sa
|
||
|
|
|
||
|
|
|
||
|
|
# revision identifiers, used by Alembic.
|
||
|
|
revision: str = '8430ab0a47af'
|
||
|
|
down_revision: Union[str, None] = None
|
||
|
|
branch_labels: Union[str, Sequence[str], None] = None
|
||
|
|
depends_on: Union[str, Sequence[str], None] = None
|
||
|
|
|
||
|
|
|
||
|
|
def upgrade() -> None:
|
||
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
|
op.drop_column('pipeline_trials', 'tracking_token')
|
||
|
|
# ### end Alembic commands ###
|
||
|
|
|
||
|
|
|
||
|
|
def downgrade() -> None:
|
||
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
|
op.add_column('pipeline_trials', sa.Column('tracking_token', sa.VARCHAR(), autoincrement=False, nullable=False))
|
||
|
|
# ### end Alembic commands ###
|