fix: add Parameter
model for lane_op
This commit is contained in:
parent
50351596ac
commit
2fe089bd57
3 changed files with 27 additions and 15 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue