Browse Source

Merge pull request #1450 from Haensel/execute-checkintegrity

added execute() command after checkIntegrity
tags/2.0.0-beta
Qiang Xue 11 years ago
parent
commit
ebcc1a6900
  1. 2
      framework/yii/test/DbFixtureManager.php

2
framework/yii/test/DbFixtureManager.php

@ -214,7 +214,7 @@ class DbFixtureManager extends Component
public function checkIntegrity($check)
{
foreach ($this->schemas as $schema) {
$this->db->createCommand()->checkIntegrity($check, $schema);
$this->db->createCommand()->checkIntegrity($check, $schema)->execute();
}
}
}

Loading…
Cancel
Save