forked from mirrors/easyappointments
28 lines
901 B
PHP
28 lines
901 B
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 - 2018, Alex Tselegidis
|
||
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
||
|
* @link http://easyappointments.org
|
||
|
* @since v1.3.0
|
||
|
* ---------------------------------------------------------------------------- */
|
||
|
|
||
|
class Migration_Add_time_format_setting extends CI_Migration {
|
||
|
public function up()
|
||
|
{
|
||
|
$this->db->insert('ea_settings', [
|
||
|
'name' => 'time_format',
|
||
|
'value' => 'regular'
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
public function down()
|
||
|
{
|
||
|
$this->db->delete('ea_settings', ['name' => 'time_format']);
|
||
|
}
|
||
|
}
|