From 3413fe6bfd423d45d083ff4ed62c0f72c2cc272f Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Thu, 28 May 2009 06:11:53 +0800 Subject: Rename 'kohana' to 'system' to conform to the Kohana filesystem layout. I'm comfortable with us not clearly drawing the distinction about the fact that it's Kohana. Signed-off-by: Gallery Role Account --- kohana/config/database.php | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 kohana/config/database.php (limited to 'kohana/config/database.php') diff --git a/kohana/config/database.php b/kohana/config/database.php deleted file mode 100644 index 6519156a..00000000 --- a/kohana/config/database.php +++ /dev/null @@ -1,45 +0,0 @@ - 'mysql://dbuser:secret@localhost/kohana' - * character_set - Database character set - * table_prefix - Database table prefix - * object - Enable or disable object results - * cache - Enable or disable query caching - * escape - Enable automatic query builder escaping - */ -$config['default'] = array -( - 'benchmark' => TRUE, - 'persistent' => FALSE, - 'connection' => array - ( - 'type' => 'mysql', - 'user' => 'dbuser', - 'pass' => 'p@ssw0rd', - 'host' => 'localhost', - 'port' => FALSE, - 'socket' => FALSE, - 'database' => 'kohana' - ), - 'character_set' => 'utf8', - 'table_prefix' => '', - 'object' => TRUE, - 'cache' => FALSE, - 'escape' => TRUE -); \ No newline at end of file -- cgit v1.2.3