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
|
|
|
/* ----------------------------------------------------------------------------
|
2022-01-18 15:05:42 +03:00
|
|
|
* Easy!Appointments - Online Appointment 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>
|
2021-12-18 19:43:45 +03:00
|
|
|
* @copyright Copyright (c) Alex Tselegidis
|
|
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link https://easyappointments.org
|
2020-04-23 21:35:21 +03:00
|
|
|
* @since v1.4.0
|
2015-07-20 22:41:24 +03:00
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
class Migration_Add_timezone_to_users extends EA_Migration
|
|
|
|
{
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Upgrade method.
|
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
public function up()
|
|
|
|
{
|
2023-11-29 12:24:09 +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',
|
2023-12-22 13:35:41 +03:00
|
|
|
'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
|
|
|
}
|