Remove dbtry

This commit is contained in:
Andreas Kristiansen
2025-09-29 08:14:23 +02:00
parent c1fc9ea2d6
commit 763b768029

View File

@@ -110,13 +110,4 @@ class Migration_adif_3_1_6 extends CI_Migration {
$this->db->where_in('adifname', $contest_names); $this->db->where_in('adifname', $contest_names);
$this->db->delete('contest'); $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());
}
}
} }