Fix bug for Department.tax attribute

This commit is contained in:
Lance Edgar 2019-07-24 22:05:35 -05:00
parent 9f19646f08
commit e046ecf254

View file

@ -47,7 +47,7 @@ class Department(Base):
name = sa.Column('dept_name', sa.String(length=30), nullable=True)
tax = sa.Column(sa.Boolean(), nullable=True)
tax = sa.Column('dept_tax', sa.Boolean(), nullable=True)
food_stampable = sa.Column('dept_fs', sa.Boolean(), nullable=True)