"""deal_total_without_discount

Revision ID: 3b56ce3d3121
Revises: 3786dc8ac98d
Create Date: 2021-05-12 06:33:53.658231

"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = '3b56ce3d3121'
down_revision = '3786dc8ac98d'
branch_labels = None
depends_on = None


def upgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.add_column('cmf_deal', sa.Column('total_without_discount', sa.Numeric(precision=14, scale=2), nullable=True))
    # ### end Alembic commands ###


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