Add request_to_go_live_notes column to Organisation table

This column will be used to stores extra notes that should go in the
Zendesk ticket when a service belonging to that organisation requests to
go live.
This commit is contained in:
Katie Smith
2019-05-10 11:47:42 +01:00
parent a5ae77f5e0
commit 84c35cbf67
3 changed files with 25 additions and 0 deletions

View File

@@ -52,6 +52,7 @@ def test_get_organisation_by_id(admin_request, notify_db_session):
'letter_branding_id',
'email_branding_id',
'domains',
'request_to_go_live_notes',
}
assert response['id'] == str(org.id)
assert response['name'] == 'test_org_1'
@@ -64,6 +65,7 @@ def test_get_organisation_by_id(admin_request, notify_db_session):
assert response['letter_branding_id'] is None
assert response['email_branding_id'] is None
assert response['domains'] == []
assert response['request_to_go_live_notes'] is None
def test_get_organisation_by_id_returns_domains(admin_request, notify_db_session):