fix: add Parameter model for lane_op

This commit is contained in:
Lance Edgar 2025-01-25 16:41:17 -06:00
parent 50351596ac
commit 2fe089bd57
3 changed files with 27 additions and 15 deletions

View file

@ -33,6 +33,13 @@ from corepos.db.common import op as common
Base = orm.declarative_base()
class Parameter(common.ParameterBase, Base):
"""
Data model for ``parameters`` table.
"""
__tablename__ = 'parameters'
class Employee(common.EmployeeBase, Base):
"""
Data model for ``employees`` table.