mirror of
https://github.com/GSA/notifications-api.git
synced 2026-09-10 01:56:03 -04:00
Almost all fields defined for Agreement.
Signed-off-by: Cliff Hill <Clifford.hill@gsa.gov>
This commit is contained in:
@@ -378,11 +378,11 @@ class Agreement(db.Model):
|
|||||||
nullable=False,
|
nullable=False,
|
||||||
)
|
)
|
||||||
partner_name = db.Column(db.String(255), primary_key=True)
|
partner_name = db.Column(db.String(255), primary_key=True)
|
||||||
status
|
# status
|
||||||
start
|
start = db.Column(db.DateTime, nullable=False)
|
||||||
end
|
end = db.Column(db.DateTime, nullable=False)
|
||||||
url
|
url = db.Column(db.String(2000), nullable=True)
|
||||||
budget_amount
|
budget_amount = db.Column(db.Float, nullable=True)
|
||||||
|
|
||||||
|
|
||||||
ORGANIZATION_TYPES = ["federal", "state", "other"]
|
ORGANIZATION_TYPES = ["federal", "state", "other"]
|
||||||
|
|||||||
Reference in New Issue
Block a user