* @copyright Copyright (c) 2013 - 2018, Alex Tselegidis * @license http://opensource.org/licenses/GPL-3.0 - GPLv3 * @link http://easyappointments.org * @since v1.3.0 * ---------------------------------------------------------------------------- */ class Migration_Add_time_format_setting extends CI_Migration { public function up() { $this->db->insert('ea_settings', [ 'name' => 'time_format', 'value' => 'regular' ]); } public function down() { $this->db->delete('ea_settings', ['name' => 'time_format']); } }