This commit is contained in:
Paminger
2016-02-29 16:51:21 +01:00
parent 2236ba7d26
commit eb84022abf
85 changed files with 12852 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
class Migrate extends CI_Controller
{
public function index()
{
$this->load->library('migration');
if ($this->migration->current() === FALSE)
{
show_error($this->migration->error_string());
}
}
}