forked from mirrors/easyappointments
35 lines
1.1 KiB
PHP
35 lines
1.1 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.3.2
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
class Migration_Add_weekday_start_setting extends CI_Migration {
|
|
public function up()
|
|
{
|
|
$this->load->model('settings_model');
|
|
|
|
try
|
|
{
|
|
$this->settings_model->get_setting('first_weekday');
|
|
}
|
|
catch (Exception $exception)
|
|
{
|
|
$this->settings_model->set_setting('first_weekday', 'sunday');
|
|
}
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
$this->load->model('settings_model');
|
|
|
|
$this->settings_model->remove_setting('first_weekday');
|
|
}
|
|
}
|