iflrandevu/src/application/migrations/001_specific_calendar_sync.php

35 lines
1.2 KiB
PHP
Raw Normal View History

2014-01-04 19:35:20 +02:00
<?php defined('BASEPATH') OR exit('No direct script access allowed');
2015-07-20 22:41:24 +03:00
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
2015-07-20 22:41:24 +03:00
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
2017-01-31 09:35:34 +03:00
* @copyright Copyright (c) 2013 - 2017, Alex Tselegidis
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
2015-07-20 22:41:24 +03:00
* @link http://easyappointments.org
* @since v1.0.0
* ---------------------------------------------------------------------------- */
2014-01-04 19:35:20 +02:00
class Migration_Specific_calendar_sync extends CI_Migration {
public function up() {
if (!$this->db->field_exists('google_calendar', 'ea_user_settings')) {
$fields = array(
'google_calendar' => array(
'type' => 'VARCHAR',
'constraint' => '128',
'null' => TRUE
)
);
$this->dbforge->add_column('ea_user_settings', $fields);
}
2014-01-04 19:35:20 +02:00
}
public function down() {
if ($this->db->field_exists('google_calendar', 'ea_user_settings')) {
$this->dbforge->drop_column('ea_user_settings', 'google_calendar');
}
2014-01-04 19:35:20 +02:00
}
}