What\'s the shorthand for inserting a new record or updating if it exists?
One more option if your id isn't autoincrement and you know which one to insert/update:
$object = MyModel::findOrNew($id); //assign attributes to update... $object->save();