easyappointments/application/migrations/020_add_language_to_users.php

43 lines
1.2 KiB
PHP
Raw Normal View History

2020-06-16 18:01:27 +03:00
<?php defined('BASEPATH') or exit('No direct script access allowed');
/* ----------------------------------------------------------------------------
2022-01-18 15:05:42 +03:00
* Easy!Appointments - Online Appointment Scheduler
2020-06-16 18:01:27 +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-06-16 18:01:27 +03:00
* @since v1.4.0
* ---------------------------------------------------------------------------- */
class Migration_Add_language_to_users extends EA_Migration
{
2020-06-16 18:01:27 +03:00
/**
* Upgrade method.
*/
public function up()
{
if (!$this->db->field_exists('language', 'users')) {
2020-06-16 18:01:27 +03:00
$fields = [
'language' => [
'type' => 'VARCHAR',
'constraint' => '256',
'default' => 'english',
'after' => 'timezone',
],
2020-06-16 18:01:27 +03:00
];
$this->dbforge->add_column('users', $fields);
}
}
/**
* Downgrade method.
*/
public function down()
{
$this->dbforge->drop_column('users', 'language');
}
}