mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
61 lines
1.5 KiB
PHP
61 lines
1.5 KiB
PHP
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
*
|
|
* @package EasyAppointments
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
|
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
* @link http://easyappointments.org
|
|
* @since v1.4.0
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
* Class Migration_Add_api_token_setting
|
|
*
|
|
* @property CI_Loader load
|
|
* @property CI_DB_query_builder db
|
|
* @property CI_DB_forge dbforge
|
|
* @property Settings_Model settings_model
|
|
*/
|
|
class Migration_Add_api_token_setting extends CI_Migration {
|
|
/**
|
|
* Migration_Add_api_token_setting constructor.
|
|
*
|
|
* @param array $config
|
|
*/
|
|
public function __construct($config = [])
|
|
{
|
|
parent::__construct($config);
|
|
|
|
$this->load->model('settings_model');
|
|
}
|
|
|
|
/**
|
|
* Upgrade method.
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function up()
|
|
{
|
|
try
|
|
{
|
|
$this->settings_model->get_setting('api_token');
|
|
}
|
|
catch (Exception $exception)
|
|
{
|
|
$this->settings_model->set_setting('api_token', '');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Downgrade method.
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function down()
|
|
{
|
|
$this->settings_model->remove_setting('api_token');
|
|
}
|
|
}
|