Skip to content

Instantly share code, notes, and snippets.

@alnutile
Created October 21, 2013 20:27
Show Gist options
  • Save alnutile/7090406 to your computer and use it in GitHub Desktop.
Save alnutile/7090406 to your computer and use it in GitHub Desktop.
settings.php
$databases = array (
'default' => array (
'default' =>
array (
'database' => 'drupalDatabase',
'username' => 'username',
'password' => 'password',
'host' => '127.0.0.1',
'port' => '',
'driver' => 'mysql',
'prefix' => '',
),
),
'thisKeyIsInMyEmail' => array(
'default' => array(
'database' => 'secondDabataName',
'username' => 'usernameHere',
'password' => 'passwordHere',
'host' => '127.0.0.1',
'port' => '',
'driver' => 'mysql',
'prefix' => '',
)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment