Fix Department.see_id field definition

this is not a flag, but a minimum age requirement
This commit is contained in:
Lance Edgar 2020-12-31 19:01:31 -06:00
parent ff428c4635
commit 52d9595331

View file

@ -146,8 +146,7 @@ class Department(Base):
discount = sa.Column('dept_discount', sa.Boolean(), nullable=True) discount = sa.Column('dept_discount', sa.Boolean(), nullable=True)
# TODO: probably should rename this attribute, but to what? see_id = sa.Column('dept_see_id', sa.Integer(), nullable=True)
dept_see_id = sa.Column(sa.Boolean(), nullable=True)
modified = sa.Column(sa.DateTime(), nullable=True) modified = sa.Column(sa.DateTime(), nullable=True)