Last active
January 25, 2019 02:55
-
-
Save deltorosalazar/c8c8c3ba49a9d92d0ef48e2f8942ca25 to your computer and use it in GitHub Desktop.
Drupal 8 DB Configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$dbopts['scheme'] = 'postgres'; | |
$databases['default']['default'] = array( | |
'database' => 'my_database_name', | |
'username' => 'deltorosalazar', | |
'password' => '', | |
'prefix' => '', | |
'host' => '127.0.0.1', | |
'port' => '5432', | |
'namespace' => 'Drupal\\Core\\Database\\Driver\\pgsql', | |
'driver' => $dbopts['scheme'] === 'postgres' ? 'pgsql' : 'mysql', | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment