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
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
2022-01-18 15:05:42 +03:00
|
|
|
* Easy!Appointments - Online Appointment Scheduler
|
2019-06-08 16:56:38 +03:00
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2021-12-18 19:43:45 +03:00
|
|
|
* @copyright Copyright (c) Alex Tselegidis
|
|
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link https://easyappointments.org
|
2019-06-08 16:56:38 +03:00
|
|
|
* @since v1.4.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
2021-10-29 11:19:10 +03:00
|
|
|
class Migration_Create_appointment_location_column extends EA_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
|
|
|
');
|
|
|
|
}
|
|
|
|
}
|