* @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 * * @property CI_Loader load * @property CI_DB_query_builder db * @property CI_DB_forge dbforge * @property Settings_Model settings_model */ class Migration_Legal_contents extends CI_Migration { /** * Upgrade method. */ 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; '); } /** * Downgrade method. */ 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`;'); } }