2020-06-16 18:01:27 +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>
|
|
|
|
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
|
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link http://easyappointments.org
|
|
|
|
* @since v1.4.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Migration_Add_language_to_users
|
2020-11-16 14:25:54 +03:00
|
|
|
*
|
|
|
|
* @property CI_DB_query_builder $db
|
|
|
|
* @property CI_DB_forge $dbforge
|
2020-06-16 18:01:27 +03:00
|
|
|
*/
|
2020-11-16 14:25:54 +03:00
|
|
|
class Migration_Add_language_to_users extends CI_Migration {
|
2020-06-16 18:01:27 +03:00
|
|
|
/**
|
|
|
|
* Upgrade method.
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
if ( ! $this->db->field_exists('language', 'users'))
|
|
|
|
{
|
|
|
|
$fields = [
|
|
|
|
'language' => [
|
|
|
|
'type' => 'VARCHAR',
|
|
|
|
'constraint' => '256',
|
2020-09-23 13:48:07 +03:00
|
|
|
'default' => 'english',
|
2020-06-16 18:01:27 +03:00
|
|
|
'after' => 'timezone'
|
|
|
|
]
|
|
|
|
];
|
|
|
|
|
|
|
|
$this->dbforge->add_column('users', $fields);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Downgrade method.
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
$this->dbforge->drop_column('users', 'language');
|
|
|
|
}
|
|
|
|
}
|