Cloudlog/application/controllers/Migrate.php

14 行
223 B
PHP

<?php class Migrate extends CI_Controller {
public function index()
{
$this->load->library('Migration');
2019-09-23 04:51:55 +08:00
if (!$this->migration->latest()) {
show_error($this->migration->error_string());
}
}
} ?>