mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-09 17:42:21 +03:00
Add files via upload
This commit is contained in:
parent
9a81370100
commit
3390b48ea6
2 changed files with 79 additions and 0 deletions
42
application/migrations/004_add_date_format_setting.php
Normal file
42
application/migrations/004_add_date_format_setting.php
Normal 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']);
|
||||
}
|
||||
}
|
||||
}
|
37
application/migrations/059_new_date_format_setting.php
Normal file
37
application/migrations/059_new_date_format_setting.php
Normal 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']);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue