- Added new controller system/DBSkel to call DBSkel procedure form CLI

- Removed libraries/MigrationLib.php
- Removed MigrationLib from libraries/CallerLib.php
This commit is contained in:
Paolo
2019-05-27 17:25:04 +02:00
parent 1121eb8352
commit 70c2686932
3 changed files with 24 additions and 467 deletions
+24
View File
@@ -0,0 +1,24 @@
<?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();
}
}