From b91120850ed63e4362596e11d8d67369bf5dec60 Mon Sep 17 00:00:00 2001
From: Daniel <daniel@harvey>
Date: Wed, 5 Feb 2020 15:19:09 +0100
Subject: [PATCH] DOC: Added comments.

---
 make_db                 | 2 +-
 patches/applyPatches.sh | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/make_db b/make_db
index 5a1f8c2..ccf3cd4 100755
--- a/make_db
+++ b/make_db
@@ -198,7 +198,7 @@ function drop() {
 
 
 # Returns 0 or non-zero, depending on whether the database exists already.
-# Optional parameter: [DATABASE_NAME]
+# Optional parameter: [DATABASE_NAME], else $DATABASE_NAME is used.
 function _db_exists() {
     $SQL -D "${1-${DATABASE_NAME}}" -e "show tables;" > /dev/null 2>&1 \
         && return 0 || return 1
diff --git a/patches/applyPatches.sh b/patches/applyPatches.sh
index a896cda..bec377c 100755
--- a/patches/applyPatches.sh
+++ b/patches/applyPatches.sh
@@ -5,6 +5,8 @@
 #
 # Copyright (C) 2018 Research Group Biomedical Physics,
 # Max-Planck-Institute for Dynamics and Self-Organization Göttingen
+# Copyright (C) 2020 Timm Fitschen <t.fitschen@indiscale.com>
+# Copyright (C) 2020 IndiScale <info@indiscale.com>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
-- 
GitLab