do not need to instantiate date type for columns
This commit is contained in:
parent
c1f99389e1
commit
1bdfd2c1eb
@ -35,7 +35,7 @@ class RequestRevision(Base, TimestampsMixin):
|
|||||||
|
|
||||||
# details_of_use
|
# details_of_use
|
||||||
jedi_usage = Column(String)
|
jedi_usage = Column(String)
|
||||||
start_date = Column(Date())
|
start_date = Column(Date)
|
||||||
cloud_native = Column(String)
|
cloud_native = Column(String)
|
||||||
dollar_value = Column(Integer)
|
dollar_value = Column(Integer)
|
||||||
dod_component = Column(String)
|
dod_component = Column(String)
|
||||||
@ -60,7 +60,7 @@ class RequestRevision(Base, TimestampsMixin):
|
|||||||
fname_request = Column(String)
|
fname_request = Column(String)
|
||||||
lname_request = Column(String)
|
lname_request = Column(String)
|
||||||
service_branch = Column(String)
|
service_branch = Column(String)
|
||||||
date_latest_training = Column(Date())
|
date_latest_training = Column(Date)
|
||||||
|
|
||||||
# financial_verification
|
# financial_verification
|
||||||
pe_id = Column(String)
|
pe_id = Column(String)
|
||||||
|
@ -32,7 +32,7 @@ class TaskOrder(Base):
|
|||||||
clin_1003 = Column(Integer)
|
clin_1003 = Column(Integer)
|
||||||
clin_2001 = Column(Integer)
|
clin_2001 = Column(Integer)
|
||||||
clin_2003 = Column(Integer)
|
clin_2003 = Column(Integer)
|
||||||
expiration_date = Column(Date())
|
expiration_date = Column(Date)
|
||||||
|
|
||||||
attachment_id = Column(ForeignKey("attachments.id"))
|
attachment_id = Column(ForeignKey("attachments.id"))
|
||||||
pdf = relationship("Attachment")
|
pdf = relationship("Attachment")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user