mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
12 lines
222 B
PHP
12 lines
222 B
PHP
<? class Migrate extends CI_Controller {
|
|
|
|
public function index()
|
|
{
|
|
$this->load->library('Migration');
|
|
|
|
if ( ! $this->migration->current()) {
|
|
show_error($this->migration->error_string());
|
|
}
|
|
}
|
|
|
|
} ?>
|