mirror of
https://github.com/kennethreitz/curated-nodes.git
synced 2026-06-21 15:40:58 +00:00
27 lines
406 B
Python
27 lines
406 B
Python
"""drop logs
|
|
|
|
Revision ID: 50aece0fd765
|
|
Revises: 4eb8f556c009
|
|
Create Date: 2013-01-26 11:28:43.514072
|
|
|
|
"""
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '50aece0fd765'
|
|
down_revision = '4eb8f556c009'
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
def upgrade():
|
|
op.drop_column('experiment', 'log')
|
|
|
|
|
|
|
|
|
|
def downgrade():
|
|
op.add_column('experiment',
|
|
sa.Column('log', sa.Text())
|
|
)
|