cloudlog/application/controllers/Migrate.php

14 lines
223 B
PHP
Raw Normal View History

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