fix: add wicable, active columns for Department model

This commit is contained in:
Lance Edgar 2024-12-17 16:45:11 -06:00
parent ed48f9134a
commit 3bb01f2397

View file

@ -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)