Files
FHC-Core/application/controllers/system/DBSkel.php
T
Paolo 70c2686932 - Added new controller system/DBSkel to call DBSkel procedure form CLI
- Removed libraries/MigrationLib.php
- Removed MigrationLib from libraries/CallerLib.php
2019-05-27 17:25:04 +02:00

25 lines
347 B
PHP

<?php
if (!defined('BASEPATH')) exit('No direct script access allowed');
class DBSkel extends CLI_Controller
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->load->library('DBSkelLib');
}
/**
* Starts the migration procedure
*/
public function start()
{
$this->dbskellib->start();
}
}