Conditions | 3 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php defined('SYSPATH') OR die('No direct script access.'); |
||
38 | public function migrate(array $up, array $down, $dry_run = FALSE) |
||
39 | { |
||
40 | $this->migrations()->execute_all($up, $down, $dry_run); |
||
41 | |||
42 | if ($up OR $down) |
||
43 | { |
||
44 | Minion_Task::factory(array('task' => 'db:structure:dump', 'file' => NULL))->execute(); |
||
45 | } |
||
46 | } |
||
47 | |||
56 |