mirror of
https://github.com/GSA/notifications-api.git
synced 2026-07-30 00:48:22 -04:00
Add billing details and notes for organisation table
This commit is contained in:
@@ -397,6 +397,12 @@ class Organisation(db.Model):
|
||||
nullable=True,
|
||||
)
|
||||
|
||||
notes = db.Column(db.Text, nullable=True)
|
||||
purchase_order_number = db.Column(db.String(255), nullable=True)
|
||||
billing_contact_names = db.Column(db.Text, nullable=True)
|
||||
billing_contact_email_addresses = db.Column(db.Text, nullable=True)
|
||||
billing_reference = db.Column(db.String(255), nullable=True)
|
||||
|
||||
@property
|
||||
def live_services(self):
|
||||
return [
|
||||
|
||||
Reference in New Issue
Block a user