I’m using Kohana v3 and ORM, I have two models, Model_A and Model_B related by “has_many” through a pivot table, which has an additional column. I can save data in that column in the pivot table using the third parameter of the add() function, but I can’t figure out how to read that column using ORM.
Any ideas? Thanks in advance.
You need to create a Model that is based on that pivot table if you want to access that additional column, let say we name it
Model_A_B.Then, if
$ais an instance ofModel_Aand$bis an instance ofModel_B, we get theModel_A_Binstance by calling: