Fixed style of files

This commit is contained in:
Alexey Pustovalov
2024-02-14 20:33:19 +09:00
parent 8377fe5aa5
commit b7d7d8e728
27 changed files with 66 additions and 90 deletions

View File

@@ -331,7 +331,7 @@ apply_db_scripts() {
}
create_db_schema_postgresql() {
DBVERSION_TABLE_EXISTS=$(psql_query "SELECT 1 FROM pg_catalog.pg_class c JOIN pg_catalog.pg_namespace n ON n.oid =
DBVERSION_TABLE_EXISTS=$(psql_query "SELECT 1 FROM pg_catalog.pg_class c JOIN pg_catalog.pg_namespace n ON n.oid =
c.relnamespace WHERE n.nspname = '$DB_SERVER_SCHEMA' AND c.relname = 'dbversion'" "${DB_SERVER_DBNAME}")
if [ -n "${DBVERSION_TABLE_EXISTS}" ]; then