mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 18:12:26 +03:00
54 lines
2.5 KiB
PHP
54 lines
2.5 KiB
PHP
<?php defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
*
|
|
* @package EasyAppointments
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
|
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
* @link http://easyappointments.org
|
|
* @since v1.3.2
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
class Migration_Legal_contents extends CI_Migration {
|
|
public function up()
|
|
{
|
|
$this->db->insert('ea_settings', ['name' => 'display_cookie_notice', 'value' => '0']);
|
|
$this->db->insert('ea_settings', ['name' => 'cookie_notice_content', 'value' => 'Cookie notice content.']);
|
|
$this->db->insert('ea_settings', ['name' => 'display_terms_and_conditions', 'value' => '0']);
|
|
$this->db->insert('ea_settings',
|
|
['name' => 'terms_and_conditions_content', 'value' => 'Terms and conditions content.']);
|
|
$this->db->insert('ea_settings', ['name' => 'display_privacy_policy', 'value' => '0']);
|
|
$this->db->insert('ea_settings', ['name' => 'privacy_policy_content', 'value' => 'Privacy policy content.']);
|
|
|
|
$this->db->query('
|
|
CREATE TABLE IF NOT EXISTS `ea_consents` (
|
|
`id` INT(11) NOT NULL AUTO_INCREMENT,
|
|
`modified` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
ON UPDATE CURRENT_TIMESTAMP,
|
|
`created` TIMESTAMP,
|
|
`first_name` VARCHAR(256),
|
|
`last_name` VARCHAR(256),
|
|
`email` VARCHAR(512),
|
|
`ip` VARCHAR(256),
|
|
`type` VARCHAR(256),
|
|
PRIMARY KEY (`id`)
|
|
)
|
|
ENGINE = InnoDB
|
|
DEFAULT CHARSET = utf8;
|
|
');
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
$this->db->delete('ea_settings', ['name' => 'display_cookie_notice']);
|
|
$this->db->delete('ea_settings', ['name' => 'cookie_notice_content']);
|
|
$this->db->delete('ea_settings', ['name' => 'display_terms_and_conditions']);
|
|
$this->db->delete('ea_settings', ['name' => 'terms_and_conditions_content']);
|
|
$this->db->delete('ea_settings', ['name' => 'display_privacy_policy']);
|
|
$this->db->delete('ea_settings', ['name' => 'privacy_policy_content']);
|
|
|
|
$this->db->query('DROP TABLE `ea_consents`;');
|
|
}
|
|
}
|