"""last_actual_update

Revision ID: db3a07f9fb94
Revises: 91347d54726b
Create Date: 2022-11-16 20:20:59.946793

"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = 'db3a07f9fb94'
down_revision = '91347d54726b'
branch_labels = None
depends_on = None


def upgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.add_column('cmf_gantt_task', sa.Column('last_actual_update', sa.TIMESTAMP(timezone=True), nullable=True))
    # ### end Alembic commands ###


def downgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.drop_column('cmf_gantt_task', 'last_actual_update')
    # ### end Alembic commands ###
