From 90961370080e832e3ba34e20c14f6073a676d3fc Mon Sep 17 00:00:00 2001 From: LSmyrnaios Date: Thu, 14 Apr 2022 14:42:36 +0300 Subject: [PATCH] Update documentation. --- src/main/resources/application.properties | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 33ec900..2af5881 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -6,9 +6,9 @@ server.servlet.context-path=/api # Service config services.pdfaggregation.controller.isTestEnvironment = false -# In case the "isTestEnvironment" is "true", the "testDatabase" below and its tables are created (if not exist). -# The tables "datasource", "publication", "publication_pids" and "publication_urls" are filled with the data from the same tables existing in the "initialDatabase". -# In case the "isTestEnvironment" is "false", the "initialDatabase" is used. The Controller assumes that the above 4 tables are present, and only creates the following tables: +# In case the "isTestEnvironment" is "true", the "testDatabase" below and all its tables are created (if not exist). +# The tables "datasource", "publication", "publication_pids" and "publication_urls" are filled with the data from the same tables existing in the "initialDatabase", if they don't exist. +# In case the "isTestEnvironment" is "false", the "initialDatabase" is used. The Controller assumes that the above 4 tables are present, and only creates, if they don't exist, the following tables: # "assignment", "attempt" and "payload", which are populated during execution. services.pdfaggregation.controller.db.initialDatabaseName = pdfaggregation_i