2016-07-21 21:30:02 +03:00
|
|
|
<?php defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2017-01-31 09:35:34 +03:00
|
|
|
* @copyright Copyright (c) 2013 - 2017, 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
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
class Migration_Add_service_attendants_number extends CI_Migration {
|
2017-09-15 14:36:37 +03:00
|
|
|
public function up()
|
|
|
|
{
|
2016-07-21 21:30:02 +03:00
|
|
|
$this->load->dbforge();
|
|
|
|
|
|
|
|
$fields = [
|
2017-09-15 14:36:37 +03:00
|
|
|
'attendants_number' => [
|
2016-07-21 21:30:02 +03:00
|
|
|
'type' => 'INT',
|
2017-09-15 14:36:37 +03:00
|
|
|
'constraint' => '11',
|
|
|
|
'default' => '1',
|
2016-07-21 21:30:02 +03:00
|
|
|
'after' => 'availabilities_type'
|
|
|
|
]
|
2017-09-15 14:36:37 +03:00
|
|
|
];
|
2016-07-21 21:30:02 +03:00
|
|
|
|
2017-09-15 14:36:37 +03:00
|
|
|
$this->dbforge->add_column('ea_services', $fields);
|
2016-07-21 21:30:02 +03:00
|
|
|
|
|
|
|
$this->db->update('ea_services', ['attendants_number' => '1']);
|
|
|
|
}
|
|
|
|
|
2017-09-15 14:36:37 +03:00
|
|
|
public function down()
|
|
|
|
{
|
2016-07-21 21:30:02 +03:00
|
|
|
$this->load->dbforge();
|
|
|
|
$this->dbforge->drop_column('ea_services', 'attendants_number');
|
|
|
|
}
|
|
|
|
}
|