2020-04-22 22:48:56 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
2019-06-08 16:56:38 +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
|
2019-06-08 16:56:38 +03:00
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link http://easyappointments.org
|
|
|
|
* @since v1.4.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
2020-04-23 21:35:21 +03:00
|
|
|
* Class Migration_Create_appointment_location_column
|
2020-04-22 22:48:56 +03:00
|
|
|
*
|
2020-09-23 12:47:18 +03:00
|
|
|
* @property CI_DB_query_builder $db
|
2020-04-22 22:48:56 +03:00
|
|
|
* @property CI_DB_forge dbforge
|
|
|
|
*/
|
2020-04-23 21:35:21 +03:00
|
|
|
class Migration_Create_appointment_location_column extends CI_Migration {
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Upgrade method.
|
|
|
|
*/
|
2019-06-08 16:56:38 +03:00
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
$this->db->query('
|
2020-05-02 13:51:06 +03:00
|
|
|
ALTER TABLE `' . $this->db->dbprefix('appointments') . '`
|
2019-06-08 16:56:38 +03:00
|
|
|
ADD COLUMN `location` TEXT AFTER `end_datetime`;
|
|
|
|
');
|
2019-06-08 17:57:09 +03:00
|
|
|
|
|
|
|
$this->db->query('
|
2020-05-02 13:51:06 +03:00
|
|
|
ALTER TABLE `' . $this->db->dbprefix('services') . '`
|
2019-06-08 17:57:09 +03:00
|
|
|
ADD COLUMN `location` TEXT AFTER `description`;
|
|
|
|
');
|
2019-06-08 16:56:38 +03:00
|
|
|
}
|
|
|
|
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Downgrade method.
|
|
|
|
*/
|
2019-06-08 16:56:38 +03:00
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
$this->db->query('
|
2020-05-02 13:51:06 +03:00
|
|
|
ALTER TABLE `' . $this->db->dbprefix('appointments') . '`
|
2019-06-08 17:57:09 +03:00
|
|
|
DROP COLUMN `location`;
|
|
|
|
');
|
|
|
|
|
|
|
|
$this->db->query('
|
2020-05-02 13:51:06 +03:00
|
|
|
ALTER TABLE `' . $this->db->dbprefix('services') . '`
|
2019-06-08 17:57:09 +03:00
|
|
|
DROP COLUMN `location`;
|
2019-06-08 16:56:38 +03:00
|
|
|
');
|
|
|
|
}
|
|
|
|
}
|