added support for database table prefixes.

This commit is contained in:
Taylor Otwell
2012-01-29 13:07:15 -06:00
parent 97fcea1e51
commit 1ec6fc766c
6 changed files with 73 additions and 22 deletions

View File

@@ -38,6 +38,7 @@ return array(
'sqlite' => array(
'driver' => 'sqlite',
'database' => 'application',
'prefix' => '',
),
'mysql' => array(
@@ -47,6 +48,7 @@ return array(
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'prefix' => '',
),
'pgsql' => array(
@@ -56,6 +58,7 @@ return array(
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'prefix' => '',
),
'sqlsrv' => array(
@@ -64,6 +67,7 @@ return array(
'database' => 'database',
'username' => 'root',
'password' => '',
'prefix' => '',
),
),