2020-04-22 22:48:56 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
2015-12-30 13:39:36 +02: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
|
2015-12-30 13:39:36 +02:00
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link http://easyappointments.org
|
|
|
|
* @since v1.1.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Class Migration_Add_require_captcha_setting
|
2020-11-16 14:25:54 +03:00
|
|
|
*
|
|
|
|
* @property CI_DB_query_builder $db
|
|
|
|
* @property CI_DB_forge $dbforge
|
2020-04-22 22:48:56 +03:00
|
|
|
*/
|
2020-11-16 14:25:54 +03:00
|
|
|
class Migration_Add_require_captcha_setting extends CI_Migration {
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Upgrade method.
|
|
|
|
*
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
2020-04-23 21:48:20 +03:00
|
|
|
$this->db->insert('settings', [
|
2020-04-23 21:35:21 +03:00
|
|
|
'name' => 'require_captcha',
|
|
|
|
'value' => '0'
|
|
|
|
]);
|
2015-12-30 13:39:36 +02:00
|
|
|
}
|
|
|
|
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Downgrade method.
|
|
|
|
*
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
public function down()
|
|
|
|
{
|
2020-04-23 21:48:20 +03:00
|
|
|
$this->db->delete('settings', ['name' => 'require_captcha']);
|
2015-12-30 13:39:36 +02:00
|
|
|
}
|
|
|
|
}
|