1 to 2 of 2
Hi,
is there a nice, simple way to clear a belongs_to association, ie. associate nothing?
regards, Tom
Ah! Found it out:
$model->associated_id = 0; $model->save();
seems to work. :)