Remove the organisation_to_service table.

This table is no longer used or referenced in the code.
We can remove this mapping table now that the organisation to service relationship is handled by the foreign key in Services.
This commit is contained in:
Rebecca Law
2019-08-15 15:17:53 +01:00
parent 5ae77efbe0
commit b37de7785c
3 changed files with 30 additions and 10 deletions

View File

@@ -70,7 +70,7 @@ def create_app(application):
application.config.from_object(configs[notify_environment])
application.config['NOTIFY_APP_NAME'] = application.name
print(application.config['SQLALCHEMY_DATABASE_URI'])
init_app(application)
request_helper.init_app(application)
db.init_app(application)