Hi,
I wonder if it's possible to have a primary key that contains multiple fields in the Crud? I've tried to do it like defined in the ORM using an array, http://docs.fuelphp.com/packages/orm/creating_models.html , but it didn't work out. This is the sample:
class Model_Article extends \Model_Crud
{
protected static $_primary_key = array('prim_key_1', 'prim_key_2');
// rest of the code
}
thanks for the help!