Add files via upload

This commit is contained in:
tm8544 2024-05-15 14:57:53 +03:00 committed by GitHub
parent 9a81370100
commit 3390b48ea6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 79 additions and 0 deletions

View file

@ -0,0 +1,42 @@
<?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.1.0
* ---------------------------------------------------------------------------- */
class Migration_Add_date_format_setting extends EA_Migration
{
/**
* Upgrade method.
*
* @throws Exception
*/
public function up()
{
if (!$this->db->get_where('settings', ['name' => 'date_format'])->num_rows()) {
$this->db->insert('settings', [
'name' => 'date_format',
'value' => 'DMY',
]);
}
}
/**
* Downgrade method.
*
* @throws Exception
*/
public function down()
{
if ($this->db->get_where('settings', ['name' => 'date_format'])->num_rows()) {
$this->db->delete('settings', ['name' => 'date_format']);
}
}
}

View file

@ -0,0 +1,37 @@
<?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.1.0
* ---------------------------------------------------------------------------- */
class Migration_Add_date_format_setting extends EA_Migration
{
/**
* Upgrade method.
*
* @throws Exception
*/
public function up()
{
$this->db->update('settings', ['value' => 'DD.MM.YYYY'], ['name' => 'date_format']);
}
/**
* Downgrade method.
*
* @throws Exception
*/
public function down()
{
if ($this->db->get_where('settings', ['name' => 'date_format'])->num_rows()) {
$this->db->delete('settings', ['name' => 'date_format']);
}
}
}