mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-14 02:05:47 +00:00
21 lines
336 B
PHP
21 lines
336 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace App\Controllers;
|
||
|
|
||
|
use \CodeIgniter\Controller;
|
||
|
|
||
|
class Migrate extends Controller
|
||
|
{
|
||
|
|
||
|
public function index()
|
||
|
{
|
||
|
$migrate = \Config\Services::migrations();
|
||
|
|
||
|
try {
|
||
|
$migrate->latest();
|
||
|
} catch (\Exception $e) {
|
||
|
// Do something with the error here...
|
||
|
}
|
||
|
}
|
||
|
}
|