Fix bug for Department.tax
attribute
This commit is contained in:
parent
9f19646f08
commit
e046ecf254
|
@ -47,7 +47,7 @@ class Department(Base):
|
||||||
|
|
||||||
name = sa.Column('dept_name', sa.String(length=30), nullable=True)
|
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)
|
food_stampable = sa.Column('dept_fs', sa.Boolean(), nullable=True)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue