Commit 1df859cf by Carsten Brandt

typo: primarykey -> primaryKey

parent 47655843
...@@ -200,7 +200,7 @@ class QueryBuilder extends \yii\db\QueryBuilder ...@@ -200,7 +200,7 @@ class QueryBuilder extends \yii\db\QueryBuilder
* @return string the SQL statement for removing a primary key constraint from an existing table. * @return string the SQL statement for removing a primary key constraint from an existing table.
* @throws NotSupportedException this is not supported by SQLite * * @throws NotSupportedException this is not supported by SQLite *
*/ */
public function dropPrimarykey($name, $table) public function dropPrimaryKey($name, $table)
{ {
throw new NotSupportedException(__METHOD__ . ' is not supported by SQLite.'); throw new NotSupportedException(__METHOD__ . ' is not supported by SQLite.');
} }
......
...@@ -119,7 +119,7 @@ class QueryBuilderTest extends DatabaseTestCase ...@@ -119,7 +119,7 @@ class QueryBuilderTest extends DatabaseTestCase
$this->assertEquals(1, count($tableSchema->primaryKey)); $this->assertEquals(1, count($tableSchema->primaryKey));
//DROP //DROP
$qb->db->createCommand()->dropPrimarykey($pkeyName, $tableName)->execute(); $qb->db->createCommand()->dropPrimaryKey($pkeyName, $tableName)->execute();
$qb = $this->getQueryBuilder(); // resets the schema $qb = $this->getQueryBuilder(); // resets the schema
$tableSchema = $qb->db->getSchema()->getTableSchema($tableName); $tableSchema = $qb->db->getSchema()->getTableSchema($tableName);
$this->assertEquals(0, count($tableSchema->primaryKey)); $this->assertEquals(0, count($tableSchema->primaryKey));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment