This commit is contained in:
38
application/migrations/053_add_default_language_setting.php
Normal file
38
application/migrations/053_add_default_language_setting.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
* Easy!Appointments - Online Appointment Scheduler
|
||||
*
|
||||
* @package EasyAppointments
|
||||
* @author A.Tselegidis <alextselegidis@gmail.com>
|
||||
* @copyright Copyright (c) Alex Tselegidis
|
||||
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.3.2
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
class Migration_Add_default_language_setting extends EA_Migration
|
||||
{
|
||||
/**
|
||||
* Upgrade method.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
if (!$this->db->get_where('settings', ['name' => 'default_language'])->num_rows()) {
|
||||
$this->db->insert('settings', [
|
||||
'name' => 'default_language',
|
||||
'value' => 'english',
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Downgrade method.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
if ($this->db->get_where('settings', ['name' => 'default_language'])->num_rows()) {
|
||||
$this->db->delete('settings', ['name' => 'default_language']);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user