Browse Source

executing truncate table command

tags/2.0.0-beta
Johannes 'Haensel' Bauer 11 years ago
parent
commit
a5682a8c3c
  1. 2
      framework/yii/test/DbFixtureManager.php

2
framework/yii/test/DbFixtureManager.php

@ -145,7 +145,7 @@ class DbFixtureManager extends Component
throw new InvalidConfigException("Table does not exist: $tableName");
}
$this->db->createCommand()->truncateTable($tableName);
$this->db->createCommand()->truncateTable($tableName)->execute();
$fileName = $this->basePath . '/' . $tableName . '.php';
if (!is_file($fileName)) {

Loading…
Cancel
Save