diff options
| author | Frédéric Guillot <fred@kanboard.net> | 2014-09-15 22:48:24 +0200 |
|---|---|---|
| committer | Frédéric Guillot <fred@kanboard.net> | 2014-09-15 22:48:24 +0200 |
| commit | 26e69a5fa903efe25556d36d742ba2084a09e38c (patch) | |
| tree | 4b59105722e93b627fdd4daac3db0edde95be164 /app/constants.php | |
| parent | e1ddf7f0127e9745f94e5ff9f76ea828e9058720 (diff) | |
Tiny postgres fixes (pull-request #263)
Diffstat (limited to 'app/constants.php')
| -rw-r--r-- | app/constants.php | 4 |
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'); |
