Skip to content

Instantly share code, notes, and snippets.

@deltorosalazar
Last active January 25, 2019 02:55
Show Gist options
  • Save deltorosalazar/c8c8c3ba49a9d92d0ef48e2f8942ca25 to your computer and use it in GitHub Desktop.
Save deltorosalazar/c8c8c3ba49a9d92d0ef48e2f8942ca25 to your computer and use it in GitHub Desktop.
Drupal 8 DB Configuration
$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