Add fields for continent and update function

This commit is contained in:
phl0
2023-02-04 17:41:21 +01:00
parent 20178df2c0
commit 72c2853fc6
9 changed files with 121 additions and 0 deletions

View File

@@ -238,6 +238,11 @@ class Update extends CI_Controller {
}
public function check_missing_continent() {
$this->load->model('logbook_model');
$this->logbook_model->check_missing_continent();
}
public function check_missing_grid($all = false){
$this->load->model('logbook_model');
$this->logbook_model->check_missing_grid_id($all);