Remove duplicated column name

This commit is contained in:
Lance Edgar 2021-05-07 11:12:44 -05:00
parent d94189c404
commit 170f0a769a

View file

@ -2,7 +2,7 @@
################################################################################
#
# pyCOREPOS -- Python Interface to CORE POS
# Copyright © 2018-2020 Lance Edgar
# Copyright © 2018-2021 Lance Edgar
#
# This file is part of pyCOREPOS.
#
@ -815,8 +815,6 @@ class ScaleItem(Base):
exception_price = sa.Column('exceptionprice', sa.Numeric(precision=10, scale=2), nullable=True)
exception_price = sa.Column('exceptionprice', sa.Numeric(precision=10, scale=2), nullable=True)
weight = sa.Column(sa.SmallInteger(), nullable=True, default=0)
by_count = sa.Column('bycount', sa.Boolean(), nullable=True, default=False)