[eluser]emorling[/eluser]
When I load an object to change a property and save it, all it's relationships are lost in the relationship table. Any idea what I'm doing wrong?
$char = new Char();
$char->get_by_id(1);
$char->gold = 10;
$char->save();
At this point all the items that my char has is lost, and also the records in the relationship table have been removed.