Browse Source

Make PotgreSQL the default configuration for Movim

pull/864/head
Timothée Jaussoin 6 years ago
parent
commit
dd4c9db679
  1. 4
      config/db.example.inc.php

4
config/db.example.inc.php

@ -3,7 +3,7 @@
# You need to copy an rename this file to 'db.inc.php' and complete the values
$conf = [
# The type can be 'pgsql' or 'mysql'
'type' => 'mysql',
'type' => 'pgsql',
# The database username
'username' => 'username',
# The password
@ -11,7 +11,7 @@ $conf = [
# Where can we find the database ?
'host' => 'localhost',
# The port number, 3306 for MySQL and 5432 for PostgreSQL
'port' => 3306,
'port' => 5432,
# The database name
'database' => 'movim'
];
Loading…
Cancel
Save