Files
wavelog/application/controllers/Migrate.php
2024-07-21 17:46:52 +02:00

15 lines
272 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());
echo 'error';
} else {
echo 'success';
}
}
}