Fix how we interpret Product.id_enforced
values
will be an age, not a flag
This commit is contained in:
parent
e0058c003d
commit
07c24b63dc
|
@ -316,7 +316,7 @@ class Product(Base):
|
|||
|
||||
quantity_enforced = sa.Column('qttyEnforced', sa.Boolean(), nullable=True)
|
||||
|
||||
id_enforced = sa.Column('idEnforced', sa.Boolean(), nullable=True)
|
||||
id_enforced = sa.Column('idEnforced', sa.SmallInteger(), nullable=True)
|
||||
|
||||
cost = sa.Column(sa.Float(), nullable=True, default=0)
|
||||
|
||||
|
|
Loading…
Reference in a new issue