Browse Source

MigrateController refactoring

tags/2.0.0-rc
Alexander Kochetov 11 years ago
parent
commit
f5b7788edd
  1. 6
      framework/console/controllers/MigrateController.php

6
framework/console/controllers/MigrateController.php

@ -205,15 +205,13 @@ class MigrateController extends Controller
public function actionDown($limit = 1) public function actionDown($limit = 1)
{ {
if ($limit === 'all') { if ($limit === 'all') {
$query = new Query; $limit = null;
$limit = $query->from($this->migrationTable)->count();
} else { } else {
$limit = (int) $limit; $limit = (int) $limit;
}
if ($limit < 1) { if ($limit < 1) {
throw new Exception("The step argument must be greater than 0."); throw new Exception("The step argument must be greater than 0.");
} }
}
$migrations = $this->getMigrationHistory($limit); $migrations = $this->getMigrationHistory($limit);
if (empty($migrations)) { if (empty($migrations)) {

Loading…
Cancel
Save