This commit is contained in:
Graham Campbell
2014-12-20 21:20:17 +00:00
parent 26e4361d8a
commit 9d8d89248f
103 changed files with 2478 additions and 2353 deletions
+7 -7
View File
@@ -3,10 +3,10 @@
$dbURL = parse_url(getenv('CLEARDB_DATABASE_URL'));
$dbName = substr($dbURL["path"], 1);
return array(
'default' => 'cleardb',
'connections' => array(
'cleardb' => array(
return [
'default' => 'cleardb',
'connections' => [
'cleardb' => [
'driver' => 'mysql',
'host' => $dbURL['host'],
'database' => $dbName,
@@ -15,6 +15,6 @@ return array(
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
),
)
);
],
],
];