Re: Action after Delete
Reply #3 –
I try to make the same operation on "Edit Page " to prevent errors after rename "jobsname" . but is not the same as "Action After Delete"
Action Before Update
//query the database and return a single row
$db->where("id", $rec_id );
$rec_name = $db->getOne("jobs")['jobname'];
Action After Update
$db ->rawQuery("ALTER TABLE `{$rec_name}`;");
What i missing ?