iflrandevu/application/migrations/018_add_timezone_to_users.php

49 lines
1.3 KiB
PHP
Raw Permalink Normal View History

<?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-07-20 22:41:24 +03:00
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) 2013 - 2020, 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.4.0
2015-07-20 22:41:24 +03:00
* ---------------------------------------------------------------------------- */
/**
* Class Migration_Add_timezone_to_users
*
* @property CI_DB_query_builder $db
* @property CI_DB_forge $dbforge
*/
class Migration_Add_timezone_to_users extends CI_Migration {
/**
* Upgrade method.
*/
public function up()
{
if ( ! $this->db->field_exists('timezone', 'users'))
{
$fields = [
'timezone' => [
'type' => 'VARCHAR',
'constraint' => '256',
'default' => 'UTC',
'after' => 'notes'
]
];
$this->dbforge->add_column('users', $fields);
}
}
2014-01-04 19:35:20 +02:00
/**
* Downgrade method.
*/
public function down()
{
$this->dbforge->drop_column('users', 'timezone');
}
}