Coverage for airflow.migrations.versions.338e90f54d61_more_logging_into_task_isntance : 69%
Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
|
"""More logging into task_isntance
Revision ID: 338e90f54d61 Revises: 13eb55f81627 Create Date: 2015-08-25 06:09:20.460147
"""
# revision identifiers, used by Alembic.
### commands auto generated by Alembic - please adjust! ### op.add_column('task_instance', sa.Column('operator', sa.String(length=1000), nullable=True)) op.add_column('task_instance', sa.Column('queued_dttm', sa.DateTime(), nullable=True))
### commands auto generated by Alembic - please adjust! ### op.drop_column('task_instance', 'queued_dttm') op.drop_column('task_instance', 'operator') ### end Alembic commands ### |