diff --git a/corepos/db/office_op/model.py b/corepos/db/office_op/model.py index 5f6fc3d..8590375 100644 --- a/corepos/db/office_op/model.py +++ b/corepos/db/office_op/model.py @@ -223,6 +223,10 @@ class Department(Base): 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) minimum = sa.Column('dept_minimum', sa.Float(), nullable=True)