fix: add wicable
, active
columns for Department model
This commit is contained in:
parent
ed48f9134a
commit
3bb01f2397
|
@ -223,6 +223,10 @@ class Department(Base):
|
||||||
|
|
||||||
food_stampable = sa.Column('dept_fs', sa.Boolean(), nullable=True)
|
food_stampable = sa.Column('dept_fs', sa.Boolean(), nullable=True)
|
||||||
|
|
||||||
|
wicable = sa.Column('dept_wicable', sa.SmallInteger(), nullable=True)
|
||||||
|
|
||||||
|
active = sa.Column(sa.Boolean(), default=True)
|
||||||
|
|
||||||
limit = sa.Column('dept_limit', sa.Float(), nullable=True)
|
limit = sa.Column('dept_limit', sa.Float(), nullable=True)
|
||||||
|
|
||||||
minimum = sa.Column('dept_minimum', sa.Float(), nullable=True)
|
minimum = sa.Column('dept_minimum', sa.Float(), nullable=True)
|
||||||
|
|
Loading…
Reference in a new issue