This is a newbie question, but I\'m still learning how to create an association between two models in rails. I have a user model and a journal_entry model. The journal entri
i bet, that u forget something like
def create @journal_entry = @user.journal_entries.build(params[:journal_entry]) # @journal_entry = current_user.journal_entries.build(params[:journal_entry]) if @journal_entry.save ..