Removing unnecessary heroku folder

This commit is contained in:
SamuelMoraesF
2014-12-29 18:50:01 -02:00
parent f2977c09ae
commit c8a42c628b

View File

@@ -1,20 +0,0 @@
<?php
$dbURL = parse_url(getenv('CLEARDB_DATABASE_URL'));
$dbName = substr($dbURL["path"], 1);
return [
'default' => 'cleardb',
'connections' => [
'cleardb' => [
'driver' => 'mysql',
'host' => $dbURL['host'],
'database' => $dbName,
'username' => $dbURL['user'],
'password' => $dbURL['pass'],
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
],
],
];