Remove duplicated column name
This commit is contained in:
parent
d94189c404
commit
170f0a769a
|
@ -2,7 +2,7 @@
|
||||||
################################################################################
|
################################################################################
|
||||||
#
|
#
|
||||||
# pyCOREPOS -- Python Interface to CORE POS
|
# pyCOREPOS -- Python Interface to CORE POS
|
||||||
# Copyright © 2018-2020 Lance Edgar
|
# Copyright © 2018-2021 Lance Edgar
|
||||||
#
|
#
|
||||||
# This file is part of pyCOREPOS.
|
# 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)
|
||||||
|
|
||||||
exception_price = sa.Column('exceptionprice', sa.Numeric(precision=10, scale=2), nullable=True)
|
|
||||||
|
|
||||||
weight = sa.Column(sa.SmallInteger(), nullable=True, default=0)
|
weight = sa.Column(sa.SmallInteger(), nullable=True, default=0)
|
||||||
|
|
||||||
by_count = sa.Column('bycount', sa.Boolean(), nullable=True, default=False)
|
by_count = sa.Column('bycount', sa.Boolean(), nullable=True, default=False)
|
||||||
|
|
Loading…
Reference in a new issue