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>
|
2017-01-31 09:35:34 +03:00
|
|
|
* @copyright Copyright (c) 2013 - 2017, 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 {
|
|
|
|
public function up() {
|
|
|
|
$this->load->dbforge();
|
|
|
|
|
|
|
|
$fields = [
|
|
|
|
'calendar_view' => [
|
|
|
|
'type' => 'VARCHAR',
|
|
|
|
'constraint' => '32',
|
2016-07-24 11:48:38 +03:00
|
|
|
'default' => 'default'
|
2016-07-17 13:37:00 +03:00
|
|
|
]
|
|
|
|
];
|
|
|
|
|
|
|
|
$this->dbforge->add_column('ea_user_settings', $fields);
|
|
|
|
|
2016-07-20 21:48:02 +03:00
|
|
|
$this->db->update('ea_user_settings', ['calendar_view' => 'default']);
|
2016-07-17 13:37:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function down() {
|
|
|
|
$this->load->dbforge();
|
|
|
|
$this->dbforge->drop_column('ea_user_settings', 'calendar_view');
|
|
|
|
}
|
|
|
|
}
|