Cloudlog/application/controllers/migrate.php
2014-03-03 01:26:26 +00:00

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());
}
}
} ?>