summaryrefslogtreecommitdiff
path: root/app/constants.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-09-15 22:48:24 +0200
committerFrédéric Guillot <fred@kanboard.net>2014-09-15 22:48:24 +0200
commit26e69a5fa903efe25556d36d742ba2084a09e38c (patch)
tree4b59105722e93b627fdd4daac3db0edde95be164 /app/constants.php
parente1ddf7f0127e9745f94e5ff9f76ea828e9058720 (diff)
Tiny postgres fixes (pull-request #263)
Diffstat (limited to 'app/constants.php')
-rw-r--r--app/constants.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/constants.php b/app/constants.php
index d52997d7..d52ce2be 100644
--- a/app/constants.php
+++ b/app/constants.php
@@ -18,13 +18,13 @@ defined('APP_VERSION') or define('APP_VERSION', 'master');
// Base directory
define('BASE_URL_DIRECTORY', dirname($_SERVER['PHP_SELF']));
-// Database driver: sqlite or mysql
+// Database driver: sqlite, mysql or postgres
defined('DB_DRIVER') or define('DB_DRIVER', 'sqlite');
// Sqlite configuration
defined('DB_FILENAME') or define('DB_FILENAME', 'data/db.sqlite');
-// Mysql configuration
+// Mysql/Postgres configuration
defined('DB_USERNAME') or define('DB_USERNAME', 'root');
defined('DB_PASSWORD') or define('DB_PASSWORD', '');
defined('DB_HOSTNAME') or define('DB_HOSTNAME', 'localhost');