mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
14 lines
223 B
PHP
14 lines
223 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());
|
|
}
|
|
|
|
}
|
|
|
|
} ?>
|