2020-04-22 22:48:56 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
2019-10-18 05:37:52 +03:00
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2021-12-18 19:43:45 +03:00
|
|
|
* @copyright Copyright (c) Alex Tselegidis
|
|
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link https://easyappointments.org
|
2019-10-18 05:37:52 +03:00
|
|
|
* @since v1.4.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
2021-10-29 11:19:10 +03:00
|
|
|
class Migration_Add_api_token_setting extends EA_Migration {
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Upgrade method.
|
|
|
|
*
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
2020-04-23 21:48:20 +03:00
|
|
|
$this->db->insert('settings', [
|
2020-04-23 21:35:21 +03:00
|
|
|
'name' => 'api_token',
|
|
|
|
'value' => ''
|
|
|
|
]);
|
2019-10-18 05:37:52 +03:00
|
|
|
}
|
|
|
|
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Downgrade method.
|
|
|
|
*
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
2019-10-18 05:37:52 +03:00
|
|
|
public function down()
|
|
|
|
{
|
2020-04-23 21:48:20 +03:00
|
|
|
$this->db->delete('settings', ['name' => 'api_token']);
|
2019-10-18 05:37:52 +03:00
|
|
|
}
|
|
|
|
}
|