mirror of
https://github.com/magicbug/Cloudlog
synced 2024-11-23 10:08:38 +00:00
13 lines
224 B
PHP
13 lines
224 B
PHP
<?php class Migrate extends CI_Controller {
|
|
|
|
public function index()
|
|
{
|
|
$this->load->library('Migration');
|
|
|
|
if ( ! $this->migration->latest()) {
|
|
show_error($this->migration->error_string());
|
|
}
|
|
}
|
|
|
|
} ?>
|