iflrandevu/src/application/migrations/004_add_date_format_setting...

27 lines
937 B
PHP
Raw Normal View History

2015-12-02 00:08:04 +02:00
<?php defined('BASEPATH') OR exit('No direct script access allowed');
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
2017-01-31 09:35:34 +03:00
* @copyright Copyright (c) 2013 - 2017, Alex Tselegidis
2015-12-02 00:08:04 +02:00
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.1.0
2015-12-02 00:08:04 +02:00
* ---------------------------------------------------------------------------- */
class Migration_Add_date_format_setting extends CI_Migration {
public function up()
{
2015-12-02 00:08:04 +02:00
$this->load->model('settings_model');
$this->settings_model->set_setting('date_format', DATE_FORMAT_DMY);
}
public function down()
{
2015-12-02 00:08:04 +02:00
$this->load->model('settings_model');
$this->settings_model->remove_setting('date_format');
}
}