Commit f5b7788e by Alexander Kochetov

MigrateController refactoring

parent e08473a0
...@@ -205,15 +205,13 @@ class MigrateController extends Controller ...@@ -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)) {
......
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