From 763b76802924595952027108af0758ec2dcba4af Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Mon, 29 Sep 2025 08:14:23 +0200 Subject: [PATCH] Remove dbtry --- application/migrations/258_adif_3_1_6.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/application/migrations/258_adif_3_1_6.php b/application/migrations/258_adif_3_1_6.php index 15f235c32..cb0118718 100644 --- a/application/migrations/258_adif_3_1_6.php +++ b/application/migrations/258_adif_3_1_6.php @@ -110,13 +110,4 @@ class Migration_adif_3_1_6 extends CI_Migration { $this->db->where_in('adifname', $contest_names); $this->db->delete('contest'); } - - function dbtry($what) { - try { - $this->db->query($what); - } catch (Exception $e) { - log_message("error", "Something gone wrong while altering a table: ".$e." // Executing: ".$this->db->last_query()); - } - } - }