2015-10-07 22:36:59 +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>
|
2016-01-02 15:47:04 +02:00
|
|
|
* @copyright Copyright (c) 2013 - 2016, Alex Tselegidis
|
2015-10-07 22:36:59 +03:00
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link http://easyappointments.org
|
2015-12-30 13:39:36 +02:00
|
|
|
* @since v1.1.0
|
2015-10-07 22:36:59 +03:00
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
class Migration_Add_google_analytics_setting extends CI_Migration {
|
|
|
|
public function up() {
|
|
|
|
$this->load->model('settings_model');
|
|
|
|
$this->settings_model->set_setting('google_analytics_code', '');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function down() {
|
|
|
|
$this->load->model('settings_model');
|
|
|
|
$this->settings_model->remove_setting('google_analytics_code');
|
|
|
|
}
|
|
|
|
}
|