From 87f9f13c3bcf85a19920bdab5a121a5a1e23acfc Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Mon, 9 Mar 2009 04:54:31 +0000 Subject: [PATCH] BUGFIX Fixed duplicate function committed in r72468 git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@72673 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- core/model/MySQLDatabase.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/core/model/MySQLDatabase.php b/core/model/MySQLDatabase.php index 5c80aff6a..0dff7f65b 100644 --- a/core/model/MySQLDatabase.php +++ b/core/model/MySQLDatabase.php @@ -187,13 +187,6 @@ class MySQLDatabase extends Database { return $this->query("SHOW DATABASES")->column(); } - /** - * Returns a column - */ - public function allDatabaseNames() { - return $this->query("SHOW DATABASES")->column(); - } - public function createTable($tableName, $fields = null, $indexes = null) { $fieldSchemas = $indexSchemas = "";