mirror of
https://github.com/GSA/notifications-api.git
synced 2026-08-19 14:08:47 -04:00
Merge pull request #3106 from alphagov/billing-fields-for-service
Add billing details fields to Service model and db table
This commit is contained in:
@@ -488,6 +488,10 @@ class Service(db.Model, Versioned):
|
||||
organisation = db.relationship('Organisation', backref='services')
|
||||
|
||||
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)
|
||||
|
||||
email_branding = db.relationship(
|
||||
'EmailBranding',
|
||||
|
||||
Reference in New Issue
Block a user