2016-07-17 13:37:00 +03: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>
|
2018-03-27 10:23:09 +03:00
|
|
|
* @copyright Copyright (c) 2013 - 2018, Alex Tselegidis
|
2016-07-17 13:37:00 +03:00
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link http://easyappointments.org
|
|
|
|
* @since v1.2.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
class Migration_Add_calendar_view_setting extends CI_Migration {
|
2017-09-15 14:36:37 +03:00
|
|
|
public function up()
|
|
|
|
{
|
2016-07-17 13:37:00 +03:00
|
|
|
$this->load->dbforge();
|
|
|
|
|
2018-02-23 17:23:13 +03:00
|
|
|
$fields = $this->db->list_fields('ea_user_settings');
|
2016-07-17 13:37:00 +03:00
|
|
|
|
2018-02-23 17:23:13 +03:00
|
|
|
if (!in_array('calendar_view', $fields, true)) {
|
|
|
|
$fields = [
|
|
|
|
'calendar_view' => [
|
|
|
|
'type' => 'VARCHAR',
|
|
|
|
'constraint' => '32',
|
|
|
|
'default' => 'default'
|
|
|
|
]
|
|
|
|
];
|
|
|
|
|
|
|
|
$this->dbforge->add_column('ea_user_settings', $fields);
|
|
|
|
|
|
|
|
$this->db->update('ea_user_settings', ['calendar_view' => 'default']);
|
|
|
|
}
|
2016-07-17 13:37:00 +03:00
|
|
|
}
|
|
|
|
|
2017-09-15 14:36:37 +03:00
|
|
|
public function down()
|
|
|
|
{
|
2016-07-17 13:37:00 +03:00
|
|
|
$this->load->dbforge();
|
|
|
|
$this->dbforge->drop_column('ea_user_settings', 'calendar_view');
|
|
|
|
}
|
|
|
|
}
|