import fundz models
This commit is contained in:
9
atst/models/task_order.py
Normal file
9
atst/models/task_order.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from sqlalchemy import Column, Integer, String
|
||||
|
||||
from atst.models import Base
|
||||
|
||||
class TaskOrder(Base):
|
||||
__tablename__ = "task_order"
|
||||
|
||||
id = Column(Integer, primary_key=True)
|
||||
number = Column(String)
|
Reference in New Issue
Block a user