mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-12 01:29:28 +00:00
70c2686932
- Removed libraries/MigrationLib.php - Removed MigrationLib from libraries/CallerLib.php
25 lines
347 B
PHP
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();
|
|
}
|
|
}
|