2020-04-22 22:48:56 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
2016-07-21 21:30:02 +03:00
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2020-03-11 12:10:59 +03:00
|
|
|
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
|
2016-07-21 21:30:02 +03:00
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link http://easyappointments.org
|
|
|
|
* @since v1.2.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
2020-05-02 14:18:05 +03:00
|
|
|
* Class Migration_Add_service_attendants_number
|
2020-11-16 14:25:54 +03:00
|
|
|
*
|
|
|
|
* @property CI_DB_query_builder $db
|
|
|
|
* @property CI_DB_forge $dbforge
|
2020-04-22 22:48:56 +03:00
|
|
|
*/
|
2020-11-16 14:25:54 +03:00
|
|
|
class Migration_Add_service_attendants_number extends CI_Migration {
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Upgrade method.
|
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
public function up()
|
|
|
|
{
|
2020-04-23 21:48:20 +03:00
|
|
|
if ( ! $this->db->field_exists('attendants_number', 'services'))
|
2018-04-24 16:26:07 +03:00
|
|
|
{
|
2018-02-23 17:23:13 +03:00
|
|
|
$fields = [
|
|
|
|
'attendants_number' => [
|
|
|
|
'type' => 'INT',
|
|
|
|
'constraint' => '11',
|
|
|
|
'default' => '1',
|
|
|
|
'after' => 'availabilities_type'
|
|
|
|
]
|
|
|
|
];
|
2018-04-24 16:26:07 +03:00
|
|
|
|
2020-04-23 21:48:20 +03:00
|
|
|
$this->dbforge->add_column('services', $fields);
|
2018-02-23 17:23:13 +03:00
|
|
|
}
|
2016-07-21 21:30:02 +03:00
|
|
|
}
|
|
|
|
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Downgrade method.
|
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
public function down()
|
|
|
|
{
|
2020-04-23 21:48:20 +03:00
|
|
|
if ($this->db->field_exists('attendants_number', 'services'))
|
2018-04-24 16:26:07 +03:00
|
|
|
{
|
2020-04-23 21:48:20 +03:00
|
|
|
$this->dbforge->drop_column('services', 'attendants_number');
|
2018-02-23 17:23:13 +03:00
|
|
|
}
|
2016-07-21 21:30:02 +03:00
|
|
|
}
|
|
|
|
}
|