Files
FHC-Core/application/controllers/Migrate.php
T
Paminger eb84022abf CI Init
2016-02-29 16:51:21 +01:00

17 lines
318 B
PHP

<?php
class Migrate extends CI_Controller
{
public function index()
{
$this->load->library('migration');
if ($this->migration->current() === FALSE)
{
show_error($this->migration->error_string());
}
}
}