You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
354 B
22 lines
354 B
7 years ago
|
<?php
|
||
7 years ago
|
namespace App\Controllers\Admin;
|
||
7 years ago
|
|
||
|
use CodeIgniter\Controller;
|
||
|
|
||
|
class Migrate extends Controller
|
||
|
{
|
||
|
public function index()
|
||
|
{
|
||
7 years ago
|
$config = new \Config\Aauth();
|
||
7 years ago
|
$migrate = \Config\Services::migrations();
|
||
|
try
|
||
|
{
|
||
7 years ago
|
$migrate->latest('App', $config->dbProfile);
|
||
7 years ago
|
}
|
||
|
catch (\Exception $e)
|
||
|
{
|
||
|
// Do something with the error here...
|
||
|
}
|
||
|
}
|
||
|
}
|