mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-11 02:22:25 +03:00
45 lines
1.3 KiB
PHP
45 lines
1.3 KiB
PHP
<?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.2.0
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
class Migration_Add_service_attendants_number extends EA_Migration {
|
|
/**
|
|
* Upgrade method.
|
|
*/
|
|
public function up()
|
|
{
|
|
if ( ! $this->db->field_exists('attendants_number', 'services'))
|
|
{
|
|
$fields = [
|
|
'attendants_number' => [
|
|
'type' => 'INT',
|
|
'constraint' => '11',
|
|
'default' => '1',
|
|
'after' => 'availabilities_type'
|
|
]
|
|
];
|
|
|
|
$this->dbforge->add_column('services', $fields);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Downgrade method.
|
|
*/
|
|
public function down()
|
|
{
|
|
if ($this->db->field_exists('attendants_number', 'services'))
|
|
{
|
|
$this->dbforge->drop_column('services', 'attendants_number');
|
|
}
|
|
}
|
|
}
|