I tried to rename “gantt_tasks” table to “my_table” on mysql database.
I use CodeIgniter, so i change the controller of “Gantt” form this :
$scheduler->render_table(“gantt_tasks”,“id”,“start_date,duration,text,progress,parent,type,open”);
}
to this :
$ scheduler-> render_table (“my_table”, “id”, “start_date, duration, text, progress, parent, type, open”);
But this is not working
Can I change the “gantt_tasks” table with another name?
Thanks