"""LDAP last full sync date

Revision ID: edd2ce776e82
Revises: 9650547f644b
Create Date: 2024-07-31 12:13:04.004763

"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = 'edd2ce776e82'
down_revision = '9650547f644b'
branch_labels = None
depends_on = None


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


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