mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
17 lines
318 B
PHP
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());
|
|
}
|
|
}
|
|
|
|
}
|