iflrandevu/application/migrations/016_add_require_phone_number_setting.php

38 lines
1.2 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php defined('BASEPATH') or exit('No direct script access allowed');
/* ----------------------------------------------------------------------------
* IFLRandevu - İzmir Fen Lisesi Randevu Portalı
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) Alex Tselegidis
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
* @link https://easyappointments.org
* @since v1.4.0
* ---------------------------------------------------------------------------- */
class Migration_Add_require_phone_number_setting extends EA_Migration
{
/**
* Upgrade method.
*/
public function up()
{
if (!$this->db->get_where('settings', ['name' => 'require_phone_number'])->num_rows()) {
$this->db->insert('settings', [
'name' => 'require_phone_number',
'value' => '1',
]);
}
}
/**
* Downgrade method.
*/
public function down()
{
if ($this->db->get_where('settings', ['name' => 'require_phone_number'])->num_rows()) {
$this->db->delete('settings', ['name' => 'require_phone_number']);
}
}
}