"""extended_cmfaudit_with_2_fields

Revision ID: 5cd30faf683c
Revises: a1e95713aec9
Create Date: 2024-06-21 15:18:28.123624

"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = '5cd30faf683c'
down_revision = 'a1e95713aec9'
branch_labels = None
depends_on = None


def upgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.add_column('cmf_audit', sa.Column('product_name', sa.String(length=32), nullable=False, server_default='eva_team'))
    op.add_column('cmf_audit', sa.Column('vendor_name', sa.String(length=32), nullable=False, server_default='eva_team'))
    # ### end Alembic commands ###


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