CakePHP update extra field on HABTM join table
问题 I have problem with updating (better updating not recreating) extra field in HABTM join table. I searched google and other sources, but struggled for 4 days now. I have models: class Tutorial extends AppModel { var $hasAndBelongsToMany = array( 'TutorialCategory' => array( 'with' => 'TutorialCategoriesTutorial', 'order' => 'TutorialCategoriesTutorial.order_by ASC', 'unique' => true, ); } class TutorialCategory extends AppModel { var $hasAndBelongsToMany = array( 'Tutorial' => array( 'with' =>