2020-04-22 22:48:56 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
2018-03-07 00:46:33 +03:00
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2020-03-11 12:10:59 +03:00
|
|
|
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
|
2018-03-07 00:46:33 +03:00
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link http://easyappointments.org
|
|
|
|
* @since v1.3.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Class Migration_Add_time_format_setting
|
|
|
|
*
|
|
|
|
* @property CI_DB_query_builder db
|
|
|
|
* @property CI_DB_forge dbforge
|
|
|
|
*/
|
2018-03-07 00:46:33 +03:00
|
|
|
class Migration_Add_time_format_setting extends CI_Migration {
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Upgrade method.
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
2020-04-23 21:35:21 +03:00
|
|
|
$this->db->insert('ea_settings', [
|
|
|
|
'name' => 'time_format',
|
|
|
|
'value' => 'regular'
|
|
|
|
]);
|
2018-03-07 00:46:33 +03:00
|
|
|
}
|
|
|
|
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Downgrade method.
|
|
|
|
*/
|
2018-03-07 00:46:33 +03:00
|
|
|
public function down()
|
|
|
|
{
|
2020-04-23 21:35:21 +03:00
|
|
|
$this->db->delete('ea_settings', ['name' => 'time_format']);
|
2018-03-07 00:46:33 +03:00
|
|
|
}
|
|
|
|
}
|