I have the below tables
CREATE TABLE IF NOT EXISTS `maintrequests` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `propID` int(11) DEFAULT NULL,
  `landlordID` int(11) NOT NULL,
  `subject` varchar(45) DEFAULT NULL,
  `message` varchar(200) DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
)
CREATE TABLE IF NOT EXISTS `users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(45) DEFAULT NULL,
  `firstname` varchar(45) DEFAULT NULL,
  `lastname` varchar(45) DEFAULT NULL,
  `created` datetime NOT NULL,
  `modified` datetime NOT NULL,
  PRIMARY KEY (`id`)
)
I am very new to Grocery CRUD and having issues joining these two tables. The join would be maintrequests.landlordID = users.id. All of the examples on the Grocery CRUD site join tables where the relevant fields have identical names
I did find this answer but he even says "this is rediculous"
My controller code
public function test(){
    $crud = new grocery_CRUD();
    $crud->set_subject('Maintenance Requests')->set_table('maintrequests')->columns('subject','created','status');
    $this->data['maintlist'] = $crud->render();
    $this->data['title'] = 'Maintenance Test';
    $this->load->view('global/_layout_main_test',$this->data);
}
My function of my model that I'm trying to convert to Grocery
public function get_all_for_landlord_table($landlordid){
    return $this->db->select('maintrequests.subject,maintrequests.created,maintrequests.status,maintrequests.message,properties.address,units.unitnum')->order_by('maintrequests.created','asc')->from('maintrequests')->join('properties','maintrequests.propid = properties.id')->join('units','maintrequests.unitid = units.id')->where(array('maintrequests.landlordID'=>$landlordid))->get()->result();
}