added execute() command after checkIntegrity

This commit is contained in:
Johannes 'Haensel' Bauer
2013-12-06 17:17:29 +01:00
parent a0b9aedb12
commit ed85ae3355

View File

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