From ab05f0d79148f99bfef4a31232cba0e38f977090 Mon Sep 17 00:00:00 2001 From: Qiang Xue Date: Wed, 25 Dec 2013 20:30:50 -0500 Subject: [PATCH] Fixed the signature of Schema::findUniqueIndexes(). --- framework/yii/db/Schema.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/yii/db/Schema.php b/framework/yii/db/Schema.php index 46288a2..9698179 100644 --- a/framework/yii/db/Schema.php +++ b/framework/yii/db/Schema.php @@ -264,7 +264,7 @@ abstract class Schema extends Object * @return array all unique indexes for the given table. * @throws NotSupportedException if this method is called */ - public function findUniqueIndexes($schema = '') + public function findUniqueIndexes($table) { throw new NotSupportedException(get_class($this) . ' does not support getting unique indexes information.'); }