mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-22 01:12:17 +00:00
- 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:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user