2020-04-22 22:48:56 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
2014-01-04 19:35:20 +02:00
|
|
|
|
2015-07-20 22:41:24 +03:00
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* Easy!Appointments - Open Source Web Scheduler
|
2015-10-07 22:36:59 +03:00
|
|
|
*
|
2015-07-20 22:41:24 +03:00
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2020-03-11 12:10:59 +03:00
|
|
|
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
|
2015-10-07 22:36:59 +03:00
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
2015-07-20 22:41:24 +03:00
|
|
|
* @link http://easyappointments.org
|
2020-04-23 21:35:21 +03:00
|
|
|
* @since v1.4.0
|
2015-07-20 22:41:24 +03:00
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
2020-04-23 21:35:21 +03:00
|
|
|
* Class Migration_Add_timezone_to_users
|
2020-11-16 14:25:54 +03:00
|
|
|
*
|
|
|
|
* @property CI_DB_query_builder $db
|
|
|
|
* @property CI_DB_forge $dbforge
|
2020-04-22 22:48:56 +03:00
|
|
|
*/
|
2020-11-16 14:25:54 +03:00
|
|
|
class Migration_Add_timezone_to_users extends CI_Migration {
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Upgrade method.
|
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
public function up()
|
|
|
|
{
|
2020-04-23 21:48:20 +03:00
|
|
|
if ( ! $this->db->field_exists('timezone', 'users'))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
|
|
|
$fields = [
|
2020-04-23 21:35:21 +03:00
|
|
|
'timezone' => [
|
2015-10-07 22:36:59 +03:00
|
|
|
'type' => 'VARCHAR',
|
2020-04-23 21:35:21 +03:00
|
|
|
'constraint' => '256',
|
|
|
|
'default' => 'UTC',
|
|
|
|
'after' => 'notes'
|
2017-09-15 14:36:37 +03:00
|
|
|
]
|
|
|
|
];
|
2020-04-23 21:35:21 +03:00
|
|
|
|
2020-04-23 21:48:20 +03:00
|
|
|
$this->dbforge->add_column('users', $fields);
|
2015-10-07 22:36:59 +03:00
|
|
|
}
|
2017-09-15 14:36:37 +03:00
|
|
|
}
|
2014-01-04 19:35:20 +02:00
|
|
|
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Downgrade method.
|
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
public function down()
|
|
|
|
{
|
2020-04-23 21:48:20 +03:00
|
|
|
$this->dbforge->drop_column('users', 'timezone');
|
2017-09-15 14:36:37 +03:00
|
|
|
}
|
2015-10-07 22:36:59 +03:00
|
|
|
}
|