Modify default past and future dates (migration)

This commit is contained in:
Alex Tselegidis 2020-12-07 22:54:52 +02:00
parent 4a7544bf52
commit c400366cd1
2 changed files with 107 additions and 1 deletions

View File

@ -21,7 +21,7 @@ $config['migration_enabled'] = TRUE;
| be upgraded / downgraded to.
|
*/
$config['migration_version'] = 20;
$config['migration_version'] = 21;
/*

View File

@ -0,0 +1,106 @@
<?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_Modify_sync_period_columns
*
* @property CI_DB_query_builder $db
* @property CI_DB_forge $dbforge
*/
class Migration_Modify_sync_period_columns extends CI_Migration {
/**
* Upgrade method.
*/
public function up()
{
$fields = [
'sync_past_days' => [
'type' => 'INT',
'constraint' => '11',
'null' => TRUE,
'default' => '30'
],
'sync_future_days' => [
'type' => 'INT',
'constraint' => '11',
'null' => TRUE,
'default' => '90'
],
];
$this->dbforge->modify_column('user_settings', $fields);
$this->db->update(
'user_settings',
[
'sync_past_days' => '30'
],
[
'sync_past_days' => '5'
]
);
$this->db->update(
'user_settings',
[
'sync_future_days' => '90'
],
[
'sync_future_days' => '5'
]
);
}
/**
* Downgrade method.
*/
public function down()
{
$fields = [
'sync_past_days' => [
'type' => 'INT',
'constraint' => '11',
'null' => TRUE,
'default' => '5'
],
'sync_future_days' => [
'type' => 'INT',
'constraint' => '11',
'null' => TRUE,
'default' => '5'
],
];
$this->dbforge->modify_column('user_settings', $fields);
$this->db->update(
'user_settings',
[
'sync_past_days' => '5'
],
[
'sync_past_days' => '30'
]
);
$this->db->update(
'user_settings',
[
'sync_future_days' => '5'
],
[
'sync_future_days' => '90'
]
);
}
}