public function table_exists($table_name = null)
 {
     if ($this->basic_model->db_table_exists($table_name)) {
         return true;
     }
     return false;
 }